/* Base Styles */
:root {
    --primary-color: rgba(238, 220, 124, 1) !important;
    --secondary-color: #ffb6c1;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --text-color: #333;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, .btn {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    border-radius: 10px;
    z-index: 1000;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content {
    text-align: center;
}

.cookie-icon {
    margin-bottom: 10px;
}

.cookie-icon img {
    width: 50px;
    height: auto;
}

.cookie-banner h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    width: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    width: 100%;
}

.btn-primary:hover, .btn-secondary:hover {
    opacity: 0.9;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

p {
  color: rgba(123, 123, 123, 1);
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;

}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.logo img {
    width: 40px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-btn {
    background-color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #fff;
}

.hero-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1,
h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: -0.02em;

    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    margin-top: 30px;
    border-radius: 10px;
    height: 300px;
   
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
 object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

/* Search Section */
.search-section {
    padding: 40px 0;
    background-color: var(--gray-color);
}

.search-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
}

.powered-by img {
    height: 20px;
    margin-left: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.destination {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.search-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #333;
}

/* Hotel Categories Section */
.hotel-categories {
    padding: 60px 0;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.category-card {
    background: linear-gradient(180deg, #FA709A 0%, rgba(254, 225, 64, 0.2) 100%);
    border: 1px solid rgba(206, 206, 206, 1);
    border-radius: 16px;
    padding: 25px;
    
    transition: transform 0.3s ease;
}

.category-card--33 {
  max-width: calc(33% - 30px);
}

.category-card--50 {
  max-width: calc(50% - 30px);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.category-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: rgba(9, 9, 9, 1);
}

.btn-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: max-content;
    max-width: 100%;
}

.btn-more:hover {
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: rgba(255, 197, 215, 1);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.choose-content {
    margin: 0 auto 40px;
    text-align: center;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 32px;
}

.feature-card {
    background: linear-gradient(90deg, rgba(254, 225, 64, 0.2) 0%, #FA709A 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 1px solid rgba(206, 206, 206, 1);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    text-align: left;
}

.feature-card p {
    font-size: 0.95rem;
    text-align: left;
    color: #000;
}

/* Cultural Highlights Section */
.cultural-highlights {
    padding: 60px 0;
}

.cultural-highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.highlights-swiper {
    width: 100%;
    padding-bottom: 30px;
}

.highlight-card {
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.highlight-image {
    height: 200px;
    margin-bottom: 20px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.highlight-content {
    
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.highlight-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.highlight-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Culinary Section */
.culinary-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.culinary-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.culinary-highlight {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 30px;
}

.culinary-image {
    height: 300px;
    margin-bottom: 32px;
}

.culinary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.culinary-content {
    
}

.culinary-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.culinary-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-explore {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    opacity: 0.9;
}

/* Pagination */
.pagination-container {
    padding: 30px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.pagination .page {
    background-color: #eee;
}

.pagination .prev-page,
.pagination .next-page {
    background-color: var(--primary-color);
}

.pagination .active {
    background-color: var(--primary-color);
    font-weight: 700;
}

.pagination a:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    margin-right: 10px;
}

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-nav-group h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-nav-group ul li {
    margin-bottom: 10px;
}

.footer-nav-group ul li a {
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-nav-group ul li a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-links a:hover img {
    opacity: 0.8;
}

.copyright p {
    font-size: 13px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    margin-bottom: 20px;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.booking-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.booking-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.booking-details p strong {
    font-weight: 600;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 5px;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .category-card--50,
    .category-card--33 {
      max-width: 100%;
    }
    .features {
      grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
  
    
    .nav-btn {
        display: block;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .culinary-highlight {
        flex-direction: column;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
      .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content {
        padding: 20px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
    }
}

.swiper-button-next, .swiper-button-prev {
  color: #000 !important;
}
.swiper-pagination-bullet-active {
  background: #000 !important;
}

.swiper-pagination {
  margin-top: 16px;
  position: relative !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 0 !important;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0 !important;
    
}

.cheap-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.cheap-hero h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 125%;
  letter-spacing: -0.02em;

}

/* Additional Specific Styles to Match the Screenshot Exactly */

/* Card Layout Refinements */
.hotel-card {
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Left Column with Rating and Image */
.hotel-card-left {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Rating Badge Styling */
.hotel-rating {
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: none;
    background-color: #fff;
    width: auto;
}

.rating-score {
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 6px;
    color: #333;
}

.rating-label {
    background-color: #333;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}

/* Very Good Label */
.rating-label.very-good {
    background-color: #333;
}

/* Average Label */
.rating-label.average {
    background-color: #666;
}

/* Hotel Image */
.hotel-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hotel-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hotel-image:hover img {
    transform: scale(1.05);
}

/* Hotel Details Right Column */
.hotel-card-right {
    padding: 25px 30px;
    background-color: #fff;
}

/* Hotel Name */
.hotel-name {
    color: #222;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Hotel Description */
.hotel-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Key Advantages Section */
.hotel-advantages h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}
/* Hotel Cards - Specific Styles */
:root {
    --primary-color: #ffd633;
    --secondary-color: #ffb6c1;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --border-color: #e0e0e0;
    --pink-bg: #ffb6c1;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-listings {
    padding: 60px 0;
    background-color: var(--pink-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hotel Card Container */
.hotel-card {
    display: flex;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: var(--shadow);
}

/* Left Section with Image and Rating */
.hotel-card-left {
    width: 250px;
    flex-shrink: 0;
    position: relative;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px 0 0 15px;
}

/* Rating Badge */
.hotel-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    padding: 5px 15px;
    margin-bottom: 15px;
    width: fit-content;
    border: 1px solid var(--border-color);
}

.rating-score {
    font-weight: 700;
    font-size: 1rem;
    margin-right: 5px;
}

.rating-label {
    font-size: 0.75rem;
    background-color: #333;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Hotel Image Container */
.hotel-image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hotel-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Right Section with Details */
.hotel-card-right {
    flex-grow: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

/* Hotel Name */
.hotel-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Hotel Description */
.hotel-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* Key Advantages Section */
.hotel-advantages {
    margin-bottom: 20px;
}

.hotel-advantages h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

/* Tags for advantages */
.advantages-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.advantage-tag {
    background-color: #FFE6EA;
    color: #333;
    font-size: 0.85rem;
    padding: 6px 15px;
    border-radius: 20px;
}

/* Booking Section */
.hotel-booking {
    margin-top: auto;
}

.booking-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.booking-tag {
    background-color: #f0f0f0;
    color: #333;
    font-size: 0.85rem;
    padding: 6px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-reserve {
    background: linear-gradient(to right, #ffd633, #ffbb33);
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-reserve:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-details {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details img {
    width: 15px;
    height: 15px;
}

.btn-details:hover {
    background-color: #f5f5f5;
}

/* Alternate Card Styles */
.hotel-card:nth-child(2n) {
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hotel-card {
        flex-direction: row;
    }
    
    .hotel-card-left {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hotel-card {
        flex-direction: column;
    }
    
    .hotel-card-left {
        width: 100%;
        padding: 20px 20px 0 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .hotel-image {
        height: 200px;
    }
    
    .hotel-image img {
        height: 100%;
    }
    
    .advantages-tags, 
    .booking-tags {
        flex-wrap: wrap;
    }
    
    .booking-actions {
        flex-direction: row;
        width: 100%;
    }
    
    .btn-reserve {
        flex-grow: 1;
    }
}

@media (max-width: 480px) {
    .hotel-card-right {
        padding: 20px;
    }
    
    .hotel-name {
        font-size: 1.3rem;
    }
    
    .hotel-description {
        font-size: 0.9rem;
    }
    
    .advantage-tag,
    .booking-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .hotel-advantages h4 {
        font-size: 0.95rem;
    }
    
    .booking-actions {
        flex-direction: row;
    }
    
    .btn-reserve {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

.contact-section {
    padding: 60px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Contact Form */
.contact-form-wrapper {
    flex: 1;
    padding: 20px 0;
}

.contact-form-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd633;
}

.send-button {
    padding: 12px 40px;
    background: linear-gradient(to bottom, #ffe6b3, #ffd633);
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.send-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Contact Image */
.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .contact-image {
        order: 0;
        height: 300px;
    }
    
    .contact-form-wrapper h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
    
    .send-button {
        width: 100%;
    }
}

.policy-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.policy-content p,
.policy-content li {
  color: rgba(14, 14, 14, 1);
  font-size: 16px;
  line-height: 1.4;
}

.policy-content li {
  list-style-type: disc;
  list-style-position: inside;
}