:root {
    --primary-color: #2be9d7;
    --text-color: #000000;
    --background-color: #ffffff;
    --font-primary: 'Lora', serif;
    --font-secondary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Ensure all headings use Lora */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}

/* Ensure paragraphs explicitly use Poppins */
p {
    font-family: var(--font-secondary);
}

/* Banner */
.banner {
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 6px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('../images/hero_upd.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.main-logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .subheadline {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero .discover {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: row; /* Horizontal by default */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 15px;
    justify-content: center;
    margin: 0 auto;
}

.cta-button, .testimonial-cta {
    display: inline-block;
    background-image: linear-gradient(to right, #00b8a9, #00897b);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 184, 169, 0.5); /* Increased size and opacity of shadow */
    border: none;
    letter-spacing: 0.5px;
}

/* Hover effect with even more prominent shadow */
.cta-button:hover, .testimonial-cta:hover {
    background-image: linear-gradient(to right, #00c9b9, #009a8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 169, 0.6); /* Enhanced shadow on hover */
}

/* Active/clicked state */
.cta-button:active, .testimonial-cta:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(0, 184, 169, 0.5); /* Still substantial shadow when pressed */
}

/* Focus state for accessibility */
.cta-button:focus, .testimonial-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 184, 169, 0.5), 0 6px 20px rgba(0, 184, 169, 0.5);
}

/* Authority Section */
.authority {
    padding: 30px 20px;
    text-align: center;
}

.authority h2 {
    font-family: var(--font-secondary);
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    animation: scroll 15s linear infinite;
    width: fit-content;
}

.logos-group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    flex-shrink: 0;
}

.logos-group img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    filter: grayscale(10%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure consistent display on mobile */
@media (max-width: 768px) {
    .logos-group {
        gap: 30px;
    }

    .logos-group img {
        height: 30px;
    }
}

/* Itineraries Section */
.itineraries {
    padding: 60px 20px 80px; /* Increased bottom padding for CTA buttons */
    text-align: center;
    background-color: #f4f4f4; /* Slightly darker gray background */
    width: 100%;
}

.itineraries-container {
    max-width: 1200px;
    margin: 0 auto;
}

.itineraries h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px auto;
    max-width: 900px; /* Make cards smaller on desktop */
}

/* Make cards square but smaller */
.itinerary-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
}

.itinerary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.itinerary-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.itinerary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.itinerary-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.itinerary-content h3 {
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1.3rem;
    font-family: var(--font-secondary);
}

.itinerary-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Buttons within Itineraries section */
.itinerary-cta {
    margin-top: 50px;
}

/* Mobile Carousel - Improved */
.carousel-container {
    display: none;
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    width: 100%;
    max-width: 350px; /* Control width on mobile */
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    box-sizing: border-box;
}

/* Make carousel cards square too */
.carousel-item .itinerary-card {
    aspect-ratio: 1/1;
    margin: 0 auto;
}

/* Improve button visibility */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: #333;
    border: none;
    outline: none;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .itineraries {
        padding: 40px 20px 60px;
    }

    .itinerary-grid {
        display: none;
    }

    .carousel-container {
        display: block;
    }

    /* CTA button styling for mobile */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 40px auto 0;
        max-width: 350px; /* Match carousel width */
    }

    .cta-button {
        text-align: center;
        justify-content: center;
        display: flex;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 50px 20px;
    text-align: center;
}

/* Add this new style for the heading */
.how-it-works h2 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #333;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

/* Home page specific styling for How It Works - only apply to index page */
body:not(.product-page) .how-it-works .steps {
    margin: 40px auto 0;
    max-width: 800px;
    gap: 20px;
}

body:not(.product-page) .how-it-works .step {
    min-width: 200px;
    padding: 20px;
}

/* Ensure product pages use original How It Works styling */
.product-page .how-it-works .steps {
    margin-top: 40px;
    max-width: none;
    gap: 0;
}

.product-page .how-it-works .step {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.step h3 {
    font-family: var(--font-secondary);
}

.step p {
    font-family: var(--font-secondary);
}

.circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-secondary);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background-color: #f4f4f4; /* Same as itineraries */
    width: 100%;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 20px;
}

.stats {
    margin-bottom: 40px;
}

.stats h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.rating-stars {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
}

.trust-score {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
    margin-bottom: 25px;
}

/* Complete revert to original testimonial styling with consistent heights */
.testimonial-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 20px;
    height: 100%;
    min-height: 320px; /* Ensure consistent minimum height */
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    padding-left: 15px;
}

.quote::before {
    content: '"';
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    left: -5px;
    top: -15px;
}

.author {
    font-weight: 600;
    color: #333;
    position: relative;
    padding-top: 15px;
    margin-top: auto; /* Push to bottom */
}

.author::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}

/* Fix CTA button width to match cards on mobile and 85% on desktop */
/* Desktop button width */
.testimonial-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 85%; /* 85% of card width on desktop */
    margin: 0 auto;
}

.testimonial-cta:hover {
    background-color: #007466;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments - fix the width to match card width */
@media (max-width: 768px) {
    .testimonial-carousel .testimonial-cta {
        background-image: linear-gradient(to right, #00b8a9, #00897b) !important;
        box-shadow: 0 6px 20px rgba(0, 184, 169, 0.5) !important; /* Matching shadow on mobile */
        /* Make button width match the testimonial card exactly */
        width: calc(100% - 20px) !important; /* Match card width minus container padding */
        max-width: 320px !important; /* Same as testimonial card max-width */
        min-width: auto !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
        position: relative !important;
        text-align: center !important;
    }

    .testimonial-carousel .testimonial-cta:hover {
        background-image: linear-gradient(to right, #00c9b9, #009a8a) !important;
        box-shadow: 0 8px 25px rgba(0, 184, 169, 0.6) !important; /* Enhanced shadow on mobile hover */
    }

    /* Ensure the carousel item isn't causing overflow */
    .testimonial-carousel .carousel-item {
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px; /* Add padding to carousel items */
    }

    /* Fix testimonial container to match button constraints */
    .testimonial-carousel .testimonial-container {
        width: 100%;
        max-width: 350px; /* Match carousel max-width */
        box-sizing: border-box;
        margin: 0 auto;
        position: relative;
    }

    /* Ensure testimonial card and button have consistent spacing */
    .testimonial-carousel .testimonial {
        margin: 10px 15px 15px 15px !important; /* Add horizontal spacing */
        max-width: 320px; /* Consistent with button max-width */
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Add padding to carousel items for spacing */
    .testimonial-carousel .carousel-item {
        padding: 0 10px; /* Add horizontal padding to create space between cards */
        box-sizing: border-box;
    }
}

/* Grid layout with equal heights */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Mobile carousel adjustments */
.testimonial-carousel .testimonial-container {
    height: auto;
}

.testimonial-carousel .testimonial {
    min-height: 300px;
    margin: 10px 10px 20px 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .testimonial-cta {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.faq h2 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background-color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: #333;
    position: relative;
    transition: background-color 0.3s ease;
    display: block;
}

/* Text container for accordion buttons */
.accordion-button-text {
    display: block;
    width: 100%;
}

/* Mobile-only padding for accordion button text */
@media (max-width: 768px) {
    .accordion-button-text {
        padding-right: 35px;
    }
}

/* Add an icon for the accordion */
.accordion-button::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.accordion-button.active {
    border-bottom: 1px solid #f0f0f0;
}

.accordion-button.active::after {
    content: '−';
    transform: translateY(-50%);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.accordion-content.active {
    max-height: 500px; /* Adjust based on your content */
    padding: 18px 25px;
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-family: var(--font-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq {
        padding: 40px 20px;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .accordion-content.active {
        padding: 15px 20px;
    }
}

/* Updated Footer Styles */
footer {
    background-color: #f4f4f4;
    color: #000;
    padding: 40px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    flex: 0 0 200px;
}

.footer-logo img {
    height: 70px;
}

.footer-sections {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.footer-section {
    margin-bottom: 30px;
    min-width: 130px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #000;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.7;
    transition: color 0.3s;
}

.footer-section a:visited,
.footer-section a:active,
.footer-section a:focus {
    color: #555;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Mobile Footer Styles - Completely revised */
@media (max-width: 768px) {
    footer {
        padding: 20px 0 30px;
    }

    .wave-separator {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
    }

    .footer-logo {
        margin-bottom: 25px;
        flex: 0 0 10px;
        width: auto;
    }

    .footer-logo img {
        height: 60px;
    }

    /* New mobile accordion structure */
    .footer-sections {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    /* Make the heading itself a button for better tap target */
    .footer-section h4 {
        margin: 0;
        padding: 15px 0;
        position: relative;
        cursor: pointer;
    }

    /* Plus/minus indicator */
    .footer-section h4::after {
        content: '+';
        position: absolute;
        right: 10px;
        font-size: 20px;
    }

    .footer-section.active h4::after {
        content: '-';
    }

    /* Hide links by default */
    .footer-links {
        height: 0;
        overflow: hidden;
        transition: none; /* No transition for more reliable behavior */
        padding: 0 0 0 15px;
    }

    /* Show links when active */
    .footer-section.active .footer-links {
        height: auto;
        padding-bottom: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subheadline {
        font-size: 1.2rem;
    }

    .steps {
        flex-direction: column;
    }

    .step {
        margin-bottom: 30px;
    }

    .logos {
        flex-direction: column;
        align-items: center;
    }

    .logos img {
        margin-bottom: 20px;
    }

    .dropdown-menu {
        display: none !important;
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        padding: 15px 0 0 20px;
        margin: 0;
        width: 100%;
        min-width: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
        display: block;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 15px 0 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 100%;
    }

    .itineraries {
        padding: 40px 20px;
    }

    .itinerary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials {
        padding: 40px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Header Styles */
.main-header {
    background-color: var(--background-color);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-logo {
    height: 60px;
    width: auto;
}

/* Mobile-only elements - hidden on desktop */
.mobile-menu-button,
.mobile-menu-close,
.mobile-menu-header,
.mobile-logo {
    display: none;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '▾';
    display: inline-block;
    margin-left: 5px;
    font-size: 1.2em;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--background-color);
    min-width: 300px;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    transition: visibility 0.3s, opacity 0.3s;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-logo {
        height: 50px;
    }

    /* Show mobile menu button */
    .mobile-menu-button {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        position: absolute;
        right: 0;
    }

    /* Hide desktop nav */
    .```text
main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: var(--background-color) !important;
        z-index: 1000 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        transition: left 0.3s !important;
        overflow-y: auto !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

    /* Mobile menu header with logo and close button */
    .mobile-menu-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 20px !important;
        border-bottom: 1px solid #eee !important;
        background: var(--background-color) !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1001 !important;
    }

    .mobile-logo {
        height: 40px !important;
    }

    .mobile-menu-close {
        display: block !important;
        background: none !important;
        border: none !important;
        font-size: 24px !important;
        cursor: pointer !important;
        padding: 10px !important;
        margin: 0 !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2) !important;
        position: relative !important;
        z-index: 9999 !important;
        color: #333 !important;
        transform: none !important;
        pointer-events: auto !important;
        user-select: none !important;
        touch-action: manipulation !important;
    }

    .mobile-menu-close:active {
        opacity: 0.7 !important;
    }

    /* Show menu when active */
    .main-nav.active {
        left: 0 !important;
        transform: translateX(0);
    }

    /* Nav items styles - updated spacing and borders */
    .nav-items {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin-top: 20px !important;
    }

    .nav-items li {
        width: 100% !important;
        border-bottom: 1px solid #eee !important;
        margin-bottom: 0 !important;
    }

    .nav-items li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block !important;
        padding: 18px 0 !important;
        font-size: 1rem !important;
    }

    /* Dropdown styles */
    .dropdown > a::after {
        content: '›' !important;
        font-size: 1.5rem !important;
        margin-left: 5px !important;
        display: inline-block !important;
        color: #2be9d7 !important;
        transition: transform 0.3s !important;
    }

    .dropdown.active > a::after {
        transform: rotate(90deg) !important;
    }

    .dropdown-menu {
        display: none !important;
        padding-left: 20px !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        position: static !important;
        width: 100% !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-button,
    .mobile-menu-close,
    .mobile-menu-header {
        display: none !important;
    }

    .main-nav {
        position: static !important;
        height: auto !important;
        width: auto !important;
        left: auto !important;
        padding: 0 !important;
    }

    .nav-items {
        flex-direction: row !important;
        padding: 0 !important;
    }
}

/* Testimonial Mobile Carousel - Fixed overflow and positioning */
.testimonial-carousel {
    display: none;
    position: relative;
    overflow: hidden; /* Hide overflow to prevent horizontal scrolling */
    margin: 40px auto;
    width: 100%;
    max-width: 350px;
}

.testimonial-carousel .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.testimonial-carousel .carousel-item {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 6px;
    overflow: visible;
}

.testimonial-carousel .testimonial {
    height: auto;
    min-height: 300px;
    margin: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure arrows are always visible above carousel */
.testimonial-carousel .carousel-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000; /* Increase z-index to ensure visibility */
    color: #333;
    border: none;
    outline: none;
}

.testimonial-prev {
    left: -20px; /* Move further outside to avoid clipping */
}

.testimonial-next {
    right: -20px; /* Move further outside to avoid clipping */
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dots .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-dots .carousel-dot.active {
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 20px;
    }

    .testimonial-grid {
        display: none; /* Hide grid on mobile */
    }

    .testimonial-carousel {
        display: block; /* Show carousel on mobile */
    }

    /* Fix CTA button width to match testimonial card width */
    .testimonial-carousel .testimonial-cta {
        max-width: 320px; /* Match the testimonial card max-width */
        width: 100%;
        margin: 0 auto 20px auto;
        display: block;
        box-sizing: border-box;
    }
}

/* Mobile carousel card sizing fixes */
@media (max-width: 768px) {
    /* Mobile carousel container */
    .testimonial-carousel {
        overflow: hidden;
        padding-bottom: 40px; /* Space for dots */
    }

    /* Fix carousel track and items */
    .testimonial-carousel .carousel-track {
        display: flex;
    }

    .testimonial-carousel .carousel-item {
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* Set fixed height for container */
    .testimonial-carousel .testimonial-container {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Fixed height for all testimonial cards */
    .testimonial-carousel .testimonial {
        min-height: 300px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        margin: 10px 0 20px 0;
    }

    /* Fix dot indicators position */
    .testimonial-dots {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .testimonial-carousel .testimonial {
        min-height: 350px; /* Slightly taller for very small screens */
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    background: url('../images/hero-about.jpg') center center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.about-hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.our-story {
    padding-top: 80px;
    padding-bottom: 0;
    background-color: #fff;
}

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

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.difference-list {
    list-style: none;
    padding: 0;
}

.difference-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.vision {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.vision-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.vision h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.vision p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .tagline {
        font-size: 1.2rem;
    }

    .story-block h2 {
        font-size: 1.8rem;
    }

    .vision h2 {
        font-size: 2rem;
    }
}

/* About page: Make H2s use the secondary font */
.about-hero h2,
.our-story h2,
.vision h2,
.story-block h2 {
    font-family: 'Poppins', sans-serif !important;
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 80px 0;
    background-color: #fff;
}

.privacy-policy .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.privacy-policy h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.privacy-policy p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.privacy-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-policy li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.privacy-policy a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy a:hover {
    color: #004d99;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 0;
    }

    .privacy-policy h1 {
        font-size: 2rem;
    }

    .privacy-policy h2 {
        font-size: 1.5rem;
    }

    .privacy-policy p,
    .privacy-policy li {
        font-size: 1rem;
    }
}

/* Refund Policy Page Styles */
.refund-policy {
    padding: 80px 0;
    background-color: #fff;
}

.refund-policy .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.refund-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.refund-policy h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.refund-policy h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.refund-policy p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.refund-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.refund-policy li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.refund-policy a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.refund-policy a:hover {
    color: #004d99;
    text-decoration: underline;
}

.refund-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.term-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .refund-policy {
        padding: 40px 0;
    }

    .refund-policy h1 {
        font-size: 2rem;
    }

    .refund-policy h2 {
        font-size: 1.5rem;
    }

    .refund-policy h3 {
        font-size: 1.2rem;
    }

    .refund-policy p,
    .refund-policy li {
        font-size: 1rem;
    }

    .refund-terms {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Styles */
.terms-of-service {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-of-service .container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-of-service h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.terms-of-service h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin: 2rem 0 1rem;
}

.terms-of-service h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin: 1.5rem 0 0.5rem;
}

.terms-of-service p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.terms-of-service .terms-section {
    margin-bottom: 2rem;
}

.terms-of-service a {
    color: #0066cc;
    text-decoration: none;
}

.terms-of-service a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-of-service {
        padding: 2rem 1rem;
    }

    .terms-of-service h1 {
        font-size: 2rem;
    }

    .terms-of-service h2 {
        font-size: 1.5rem;
    }

    .terms-of-service h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
  body > header > div > nav > ul > li.dropdown > a::after {
    content: '›' !important;
    font-size: 1.5rem !important;
    margin-left: 5px !important;
    display: inline-block !important;
    color: #2be9d7 !important;
  }
  body > header > div > nav > ul > li.dropdown.active > a::after {
    transform: rotate(90deg) !important;
  }
}

/* Fix for mobile menu - place at the end of your CSS file */
@media (max-width: 768px) {
    /* Main navigation overlay */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 9999;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
        transform: translateX(0);
    }

    /* Mobile header and close button */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        background-color: white;
        z-index: 1;
    }

    .mobile-menu-close {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Nav items */
    .nav-items {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .nav-items li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    /* Clear conflicts */
    .dropdown-menu {
        display: none;
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        min-width: auto;
        width: 100%;
        padding: 0 0 0 20px;
        margin: 10px 0;
        background: transparent;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Arrow */
    .dropdown > a::after {
        content: '›';
        float: right;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
        transform: rotate(90deg);
    }
}

/* Fix for permanently open mobile menu - this must be at the end of the file */
@media (max-width: 768px) {
    body .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        transition: transform 0.3s ease, left 0.3s ease !important;
        z-index: 9999 !important;
    }

    body .main-nav.active {
        left: 0 !important;
        transform: translateX(0) !important;
    }
}

/* Fix for mobile menu close button - add at the end of the file */
@media (max-width: 768px) {
    .mobile-menu-close, .menu-closer {
        display: block !important;
        background: none !important;
        border: none !important;
        font-size: 24px !important;
        color: #333 !important;
        cursor: pointer !important;
        padding: 10px 15px !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 10000 !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2) !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    .mobile-menu-close:active, .menu-closer:active {
        opacity: 0.7 !important;
    }

    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 15px !important;
        background-color: white !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        border-bottom: 1px solid #eee !important;
    }
}

/* Fix for FAQ accordions on index page - add at the end of the file */
@media (max-width: 768px) {
    /* Home page FAQ accordion fix */
    .faq .accordion-button {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        padding: 15px 20px !important;
        position: relative !important;
        cursor: pointer !important;
    }

    .faq .accordion-content {
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        padding: 0 25px !important;
    }

    .faq .accordion-content.active {
        max-height: 500px !important;
        padding: 15px 25px !important;
    }

    /* Footer accordion fix for home page */
    .footer-section h4 {
        cursor: pointer !important;
        position: relative !important;
    }

    .footer-section h4::after {
        content: '+' !important;
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 20px !important;
    }

    .footer-section.active h4::after {
        content: '-' !important;
    }

    .footer-links {
        display: none !important;
    }

    .footer-section.active .footer-links {
        display: block !important;
    }
}

/* Fix for dropdown menu on index page - add at the end of the file */
@media (max-width: 768px) {
    /* Ensure dropdown arrow rotates properly */
    .dropdown > a::after {
        content: '›' !important;
        font-size: 1.5rem !important;
        margin-left: 5px !important;
        display: inline-block !important;
        color: #2be9d7 !important;
        transition: transform 0.3s !important;
    }

    .dropdown.active > a::after {
        transform: rotate(90deg) !important;
    }

    /* Fix dropdown menu display */
    .dropdown-menu {
        display: none !important;
        padding-left: 20px !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        position: static !important;
        width: 100% !important;
        min-width: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: 500px !important;
    }
}

/* Ultra specific selectors to fix index page dropdown and accordions - add to the very end of the file */
@media (max-width: 768px) {
    /* EXACT PATH for index page dropdown with highest specificity */
    body .main-header .header-content .main-nav .nav-items li.dropdown > a::after,
    header.main-header div.header-content nav.main-nav ul.nav-items li.dropdown > a::after,
    .main-header > .header-content > .main-nav > .nav-items > .dropdown > a::after,
    html body header div nav ul li.dropdown > a::after {
        content: '›' !important;
        font-size: 1.5rem !important;
        margin-left: 5px !important;
        display: inline-block !important;
        color: #2be9d7 !important;
        transition: transform 0.3s ease !important;
    }

    /* Rotation for active state with highest specificity */
    body .main-header .header-content .main-nav .nav-items li.dropdown.active > a::after,
    header.main-header div.header-content nav.main-nav ul.nav-items li.dropdown.active > a::after,
    .main-header > .header-content > .main-nav > .nav-items > .dropdown.active > a::after,
    html body header div nav ul li.dropdown.active > a::after {
        transform: rotate(90deg) !important;
    }

    /* Ensure dropdown menus work */
    body .main-header .main-nav .nav-items .dropdown .dropdown-menu,
    html body header nav ul li.dropdown ul.dropdown-menu {
        display: none !important;
        padding-left: 20px !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        position: static !important;
        width: 100% !important;
        min-width: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        padding: 0 0 0 20px !important;
        margin: 10px 0 !important;
    }

    body .main-header .main-nav .nav-items .dropdown.active .dropdown-menu,
    html body header nav ul li.dropdown.active ul.dropdown-menu {
        display: block !important;
    }

    /* Home page footer specific fixes with highest specificity */
    body > footer .footer-section h4,
    html body footer div.footer-content div.footer-sections div.footer-section h4 {
        cursor: pointer !important;
        position: relative !important;
        padding: 15px 0 !important;
        margin: 0 !important;
    }

    body > footer .footer-section h4::after,
    html body footer div.footer-content div.footer-sections div.footer-section h4::after {
        content: '+' !important;
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 20px !important;
    }

    body > footer .footer-section.active h4::after,
    html body footer div.footer-content div.footer-sections div.footer-section.active h4::after {
        content: '-' !important;
    }

    body > footer .footer-section .footer-links,
    html body footer div.footer-content div.footer-sections div.footer-section div.footer-links {
        display: none !important;
        height: auto !important;
        padding-bottom: 15px !important;
    }

    body > footer .footer-section.active .footer-links,
    html body footer div.footer-content div.footer-sections div.footer-section.active div.footer-links {
        display: block !important;
    }
}

/* Direct inline styles to ensure they override everything else */
```text
body::after {
    content: "";
    display: none;
}

body {
    --apply-dropdown-fix: yes;
    --apply-footer-fix: yes;
}

/* Container to clip the carousel's overflow */
.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    width: 100%;
    max-width: 350px;
    padding: 0 20px;
}

/* Make the carousel itself overflow visible */
.testimonial-carousel {
    position: relative;
    overflow: visible;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Keep arrows outside but visible */
.testimonial-carousel .carousel-nav {
    z-index: 2000;
}

.testimonial-prev {
    left: -15px;
}

.testimonial-next {
    right: -15px;
}