/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0a1e5e;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
    padding: 20px;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-icon {
    margin-bottom: 15px;
}

.cookie-icon img {
    width: 60px;
    height: 60px;
}

.cookie-content h2 {
    color: #0a1e5e;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.accept-btn, .reject-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: #ff6600;
    color: white;
}

.reject-btn {
    background-color: transparent;
    border: 2px solid #ddd;
    color: #666;
}

.accept-btn:hover {
    background-color: #e55a00;
}

.reject-btn:hover {
    border-color: #bbb;
    color: #444;
}

/* Header and Navigation Styles */
header {
    
    padding: 15px 0;
   
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}

.logo {
    display: flex;
    align-items: center;
    color: #FF6302;
font-family: Helvetica;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

.logo a {
    color: #FF6302;
font-family: Helvetica;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: 30px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ff6600;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.burger-menu span {
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero {
    background-color: #0a1e5e;
    color: white;
    padding: 50px 0;
}

.hero-content {
    display: flex;
    gap: 30px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: #ff6600;
}

.hero p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Search Form Styles */
.search-form {
    padding: 30px 0;
    background-color: #f5f5f5;
    position: relative;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 26px;
background: #E7E6EE;
    padding: 30px;
   
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.form-container h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.half {
    width: 50%;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #e55a00;
}

/* Hotel Categories Styles */
.hotel-categories {
    padding: 50px 0;
    background-color: #0a1e5e;
    color: white;
}

.category-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.category-box {
    flex: 1;
    padding: 20px;
    border-bottom: 1px solid #ff6600;
}

.category-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.category-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.arrow-link {
    display: flex;
    align-items: center;
    color: #ff6600;
    font-weight: bold;
    transition: all 0.3s ease;
}

.arrow-link:hover {
    color: white;
}

.arrow-link::after {
    content: "→";
    margin-left: 5px;
    transition: all 0.3s ease;
}

.arrow-link:hover::after {
    margin-left: 10px;
}

/* Best Choice Styles */
.best-choice {
    padding: 50px 0;
    background-color: white;
}

.section-title {
    font-size: 28px;
    color: #0a1e5e;
    text-align: center;
    margin-bottom: 30px;
}

.section-title span {
    color: #ff6600;
}

.best-choice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Sets Apart Styles */
.sets-apart {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.features-grid {
    display: flex;
   align-items: center;
   justify-content: space-between;
    gap: 30px;
}

.features-row {
    display: flex;
   margin: 15px 0;
   justify-content: space-between;
    gap: 30px;
}

.feature-column {
    display: flex;
   align-items: center;
   justify-content: space-between;
   flex-direction: column;
   gap: 30px;
   width: 100%;
   flex: 0 1 31%;
}

.feature-image {
    flex: 0 1 31%;
    width: 100%;
}

.feature-box {
    border-radius: 26px;
background: #08004C;
color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-content {
    display: flex;
    gap: 15px;
}

.feature-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-box p {
    flex: 1;
    font-size: 14px;
}

/* Wonders Styles */
.wonders {
    padding: 50px 0;
    background-color: white;
}

.wonders-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.wonders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wonder-box {
    border-radius: 26px;
background: #08004C;
padding: 20px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wonder-image {
    height: 200px;
    overflow: hidden;
}

.wonder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wonder-box h3 {
    padding: 15px 0;
    color: #fff;
    font-size: 18px;
}

.wonder-box p {
    padding: 0 0 20px;
    font-size: 14px;
}

.orange-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #ff6600;
    color: white;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.orange-btn:hover {
    background-color: #e55a00;
}

/* Restaurants Styles */
.restaurants {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.restaurant-box {
    background-color: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.restaurant-image {
    height: 200px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-box h3 {
    padding: 15px 0;
    color: #0a1e5e;
    font-size: 18px;
}

.restaurant-box p {
    padding: 0 0 20px;
    font-size: 14px;
}

/* Footer Styles */
footer {
    
    padding: 50px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-logo img {
    height: 40px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.footer-nav ul li {
    margin-left: 20px;
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ff6600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
  
    border-radius: 50%;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    color: #ff6600;
}

.footer-address {
    text-align: center;
    font-size: 14px;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
}

/* Thank You Page Styles */
.thank-you-container {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.thank-you-container img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
}

.thank-you-container h1 {
    color: #0a1e5e;
    font-size: 32px;
    margin-bottom: 10px;
}

.thank-you-container p {
    font-size: 24px;
    margin-bottom: 30px;
}

.return-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.return-button:hover {
    background-color: #e55a00;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .burger-menu {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: #fff;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
.header-content {
    flex-direction: row;
    justify-content: space-between;
}

    .hero-content {
        flex-direction: column;
        justify-content: space-between;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .wonders-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    
    .category-row {
        flex-direction: column;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav ul {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin: 0 auto 20px;
    }
    
    .footer-address {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .feature-content {
        flex-direction: column;
    }

    .features-row {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-image {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .half {
        width: 100%;
    }

 
}      



.w-img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mainf {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                