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

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f4;
}

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

/* Image Loading Optimization */
img {
    transition: opacity 0.3s ease;
}

img.loading {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Preload critical images */
/* Loading attribute is handled in HTML, not CSS */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
    vertical-align: middle;
}

.nav-logo h2 {
    color: #b8956a;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #b8956a;
}

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

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background-color: #f8f6f4;
    color: #b8956a;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Mobile dropdown adjustments */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-left: 1rem;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #eee;
        font-size: 0.95rem;
    }

    .dropdown-link:hover {
        background-color: rgba(184, 149, 106, 0.1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #b8956a; /* Fallback color */
    background-image: url('attached_assets/forest_1753297392175.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Changed from fixed for better performance */
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    will-change: transform; /* Optimize for animations */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
}

.hero-description {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-overlay-card {
    position: absolute;
    bottom: -60px;
    right: -120px;
    background: #b8956a;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    z-index: 3;
}

.hero-overlay-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-overlay-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
button, .btn-primary, .btn-secondary, .btn-outline {
    border: none;
    outline: none;
}

button:focus, .btn-primary:focus, .btn-secondary:focus, .btn-outline:focus {
    outline: none;
    border: none;
}

.btn-primary {
    background-color: #b8956a;
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #a68454;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

.btn-secondary {
    background-color: #b8956a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.btn-secondary:hover {
    background-color: #a68454;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #b8956a;
    padding: 0.75rem 1.5rem;
    border: 2px solid #b8956a;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #b8956a;
    color: white;
    border-color: #b8956a;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background-color: #b8956a;
    position: relative;
    width: 100%;
    overflow: visible;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
}

.service-card {
    background-color: transparent;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    overflow: visible;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(184, 149, 106, 0.85);
    transition: background 0.3s ease;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}



.service-card.injury-rehab {
    background-image: url('attached_assets/injury_1755005881109.png');
}

.service-card.one-to-one {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.33.24_1753457902436.png');
}

.service-card.online-training {
    background-image: url('attached_assets/online 1-1_1755005967003.png');
}

.service-card.group-training {
    background-image: url('attached_assets/groupe traing_1755008353417.png');
}



/* In-Person Coaching Service Card Backgrounds */
.service-card.one-to-one-sessions {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.33.24_1753457902436.png');
}

.service-card.professional-equipment {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.36.03_1753457902436.png');
}

.service-card.flexible-locations {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.40.37_1753458121303.png');
}

.service-card.injury-rehabilitation {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.26.17_1753457902436.png');
}




.service-card.weekly-checkins {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.49_1753457201165.png');
}

.service-card.form-assessment {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.26.17_1753457256567.png');
}

.service-card.personalized-workout {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.21_1753457013240.png');
}

.service-card.nutrition-guidance {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.06.22_1753456195523.png');
}

/* Workout Plans specific grid - 6 boxes */
.workout-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
}

.service-card.tailored-goals {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.21_1753457013240.png');
}

.service-card.workout-anywhere {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.33.24_1753457902436.png');
}

.service-card.progress-tracking {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.49_1753457201165.png');
}

.service-card.flexible-schedule {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.40.37_1753458121303.png');
}

.service-card.mobile-friendly {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.36.03_1753457902436.png');
}

.service-card.qualified-pt {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.26.17_1753457256567.png');
}

/* Menopause Coaching Service Card Backgrounds */
.service-card.hormone-workouts {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.21_1753457013240.png');
}

.service-card.hormone-nutrition {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.06.22_1753456195523.png');
}

.service-card.mood-focus {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.49_1753457201165.png');
}

.service-card.empathetic-support {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.26.17_1753457256567.png');
}

/* Nutrition Coaching Service Card Backgrounds */
.service-card.nutrition-guidance {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.06.22_1753456195523.png');
}

.service-card.flexible-plans {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.21_1753457013240.png');
}

.service-card.certified-support {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.26.17_1753457256567.png');
}

/* Ozempic Coaching Service Card Backgrounds */
.service-card.ozempic-fitness {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.21_1753457013240.png');
}

.service-card.hormone-nutrition {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.06.22_1753456195523.png');
}

.service-card.side-effect-management {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.49_1753457201165.png');
}

.service-card.specialized-support {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.26.17_1753457256567.png');
}

.service-card:hover::before {
    background: rgba(184, 149, 106, 0.7);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 -15px 35px rgba(0, 0, 0, 0.2),
        -20px 0 40px rgba(0, 0, 0, 0.2),
        20px 0 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: bold;
}

.service-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.service-card .btn-outline {
    color: white;
    border-color: white;
    background-color: transparent;
    padding: 0.75rem 2rem;
}

.service-card .btn-outline:hover {
    background-color: white;
    color: #b8956a;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-image: url('attached_assets/outside_1753467690832.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 246, 244, 0.2);
    z-index: 1;
}

.about-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    height: 100%;
}

.about-image-container {
    display: none;
}

.about-image {
    display: none;
}

.about-text {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(3px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #b8956a;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: #e8e0d6;
    text-align: center;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.cta h2 {
    font-size: 2.2rem;
    color: #b8956a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Plans Section */
.plans {
    padding: 5rem 0;
    background-color: #b8956a;
    color: white;
    text-align: center;
}

.plans h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.plans-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.plans-subtitle a {
    color: white;
    text-decoration: underline;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.plan-card {
    background-color: white;
    color: #333;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 3px solid #d13333;
}

.plan-badge {
    background-color: #d13333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b8956a;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plans-footer {
    margin-top: 2rem;
}

.plans-footer a {
    color: white;
    text-decoration: underline;
}

/* What's Included Section */
.whats-included {
    padding: 5rem 0;
    background-color: #f8f6f4;
}

.whats-included h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: bold;
    text-align: center;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.feature.reverse {
    direction: rtl;
}

.feature.reverse .feature-content {
    direction: ltr;
}

.feature-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.included-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
}

.included-item h3 {
    font-size: 1.4rem;
    color: #b8956a;
    margin-bottom: 1rem;
    font-weight: bold;
}

.included-item p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: #e8e0d6;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: bold;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: transform 0.3s ease;
}

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

.step-number {
    background: #b8956a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: #b8956a;
    font-weight: bold;
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background-color: #b8956a;
    color: white;
    text-align: center;
}

.packages h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.packages-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    align-items: stretch;
}

.package-card {
    background-color: white;
    color: #333;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.package-card.featured-package {
    border: 3px solid #b8956a;
}

.package-badge {
    background-color: white;
    color: #b8956a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.package-price {
    font-size: 2.2rem;
    color: #b8956a;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.package-price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.package-features {
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-features h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-features ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.package-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-positioning {
    background: #f8f6f4;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #b8956a;
}

.package-positioning p {
    margin: 0;
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: auto;
}

.package-helper {
    text-align: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    margin: 4rem auto;
    max-width: 800px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.package-helper h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.package-helper p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.package-helper p:last-of-type {
    margin-bottom: 2rem;
}

.package-helper .btn-secondary {
    background-color: white;
    color: #b8956a;
    border: 2px solid white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-helper .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section - Horizontal slider layout */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f6f4;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: bold;
    text-align: center;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial {
    background: #333;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 800px;
}

.testimonial p {
    font-style: italic;
    color: white;
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-nav-btn {
    background: #b8956a;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
}

.testimonial-nav-btn:hover {
    background: #a08659;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 149, 106, 0.4);
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

.testimonial-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(184, 149, 106, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #b8956a;
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background-color: #a08659;
    transform: scale(1.1);
}

.packages-footer {
    margin-top: 2rem;
}

.packages-footer a {
    color: white;
    text-decoration: underline;
}

/* Section Divider */
.section-divider {
    padding: 3rem 0;
    background-color: #f8f6f4;
    position: relative;
}

.divider-line {
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #b8956a 20%, 
        #b8956a 80%, 
        transparent 100%);
    border-radius: 2px;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #b8956a;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #f8f6f4;
}

/* Ozempic Coaching Specific Styles */
.ozempic-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.ozempic-feature-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.ozempic-feature-card.reverse {
    flex-direction: row-reverse;
    background: #f8f6f4;
}

.feature-sprite {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.feature-sprite::before {
    content: '';
    width: 40px;
    height: 40px;
    background-color: #b8956a;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

/* Custom Sprite Icons */
.fitness-sprite {
    background: linear-gradient(135deg, #b8956a, #a08659);
}

.fitness-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M6.5 6.5h11v11h-11z'/%3E%3Cpath d='M21 12h-3M6 12H3M12 21v-3M12 6V3'/%3E%3C/svg%3E");
}

.nutrition-sprite {
    background: linear-gradient(135deg, #8fbc8f, #6b8e6b);
}

.nutrition-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.tracking-sprite {
    background: linear-gradient(135deg, #4682b4, #2f4f4f);
}

.tracking-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpolyline points='22,12 18,12 15,21 9,3 6,12 2,12'/%3E%3C/svg%3E");
}

.wellness-sprite {
    background: linear-gradient(135deg, #dda0dd, #ba55d3);
}

.wellness-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}

.strength-sprite {
    background: linear-gradient(135deg, #cd853f, #a0522d);
}

.strength-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M6.5 12c0-2.5 2-4.5 4.5-4.5s4.5 2 4.5 4.5-2 4.5-4.5 4.5-4.5-2-4.5-4.5'/%3E%3Cpath d='M6.5 12H3M17.5 12H21M12 6.5V3M12 17.5V21'/%3E%3C/svg%3E");
}

.support-sprite {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.support-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.feature-details h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.feature-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Who It's For Section */
.who-its-for {
    padding: 5rem 0;
    background-color: #e8e0d6;
    text-align: center;
}

.who-its-for h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: bold;
}

.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.audience-card h3 {
    font-size: 1.5rem;
    color: #b8956a;
    margin-bottom: 1rem;
    font-weight: bold;
}

.audience-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* In-Person Coaching Specific Styles */
.inperson-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
}

/* In-Person Service Card Backgrounds */
.service-card.one-to-one-training {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.33.24_1753457902436.png');
}

.service-card.nutrition-included {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.06.22_1753456195523.png');
}

.service-card.flexible-scheduling {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.40.37_1753458121303.png');
}

.service-card.goal-focused {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.21.21_1753457013240.png');
}

.service-card.supportive-environment {
    background-image: url('attached_assets/OpenAI Playground 2025-07-25 at 17.26.17_1753457256567.png');
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background-color: #f8f6f4;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: bold;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 1.8rem;
    color: #b8956a;
    margin-bottom: 2rem;
    font-weight: bold;
}

.location-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-option:hover {
    transform: translateY(-5px);
}

.location-sprite {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.location-sprite::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: white;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.gym-sprite {
    background: linear-gradient(135deg, #b8956a, #a08659);
}

.gym-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M2 3h20v18H2z'/%3E%3Cpath d='M8 21V7a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14'/%3E%3Cpath d='M8 7h8'/%3E%3Cpath d='M8 11h8'/%3E%3C/svg%3E");
}

.home-sprite {
    background: linear-gradient(135deg, #4682b4, #2f4f4f);
}

.home-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9,22 9,12 15,12 15,22'/%3E%3C/svg%3E");
}

.location-details h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.location-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.map-placeholder {
    background: linear-gradient(135deg, #b8956a, #a08659);
    height: 300px;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-overlay {
    text-align: center;
    color: white;
}

.map-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.map-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Timeline Styles for What's Included */
.included-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    background: #f8f6f4;
}

.timeline-sprite {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2);
}

.timeline-sprite::before {
    content: '';
    width: 40px;
    height: 40px;
    background-color: white;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.session-sprite {
    background: linear-gradient(135deg, #b8956a, #a08659);
}

.session-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.program-sprite {
    background: linear-gradient(135deg, #8fbc8f, #6b8e6b);
}

.program-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.form-sprite {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.form-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
}

.progress-sprite {
    background: linear-gradient(135deg, #4682b4, #2f4f4f);
}

.progress-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpolyline points='22,12 18,12 15,21 9,3 6,12 2,12'/%3E%3C/svg%3E");
}

.adjustment-sprite {
    background: linear-gradient(135deg, #dda0dd, #ba55d3);
}

.adjustment-sprite::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 1v6M12 17v6M4.22 4.22l4.24 4.24M15.54 15.54l4.24 4.24M1 12h6M17 12h6M4.22 19.78l4.24-4.24M15.54 8.46l4.24-4.24'/%3E%3C/svg%3E");
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card {
        padding: 2rem;
    }

    .package-card.featured-package {
        border: 2px solid #b8956a;
    }

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

    .package-helper {
        padding: 2rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial {
        padding: 2rem;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .testimonials-navigation {
        gap: 1rem;
    }

    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Section divider responsive */
    .section-divider {
        padding: 2rem 0;
    }

    .divider-line {
        max-width: 300px;
    }

    /* Ozempic coaching responsive */
    .ozempic-feature-card,
    .ozempic-feature-card.reverse {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-sprite {
        min-width: 60px;
        height: 60px;
    }

    .feature-sprite::before {
        width: 30px;
        height: 30px;
    }

    .target-audience {
        grid-template-columns: 1fr;
    }

    .who-its-for h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    /* In-Person coaching responsive */
    .inperson-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-section h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .map-placeholder {
        height: 200px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-sprite {
        min-width: 60px;
        height: 60px;
    }

    .timeline-sprite::before {
        width: 30px;
        height: 30px;
    }

    .location-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .location-sprite {
        min-width: 50px;
        height: 50px;
    }

    .location-sprite::before {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .packages {
        padding: 3rem 0;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-price {
        font-size: 1.8rem;
    }

    .package-helper {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #b8956a;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 1.8rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    font-style: italic;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #b8956a;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #b8956a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    background-color: #b8956a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #a68454;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #b8956a;
}

.dot:hover {
    background-color: #a68454;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-text {
        padding: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-overlay-card {
        position: static;
        margin-top: 2rem;
        max-width: none;
        right: auto;
        transform: none;
        margin-bottom: 3rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .workout-plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .feature.reverse {
        direction: ltr;
    }

    .feature-image {
        height: 300px;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .whats-included,
    .how-it-works {
        padding: 3rem 0;
    }

    .whats-included h2,
    .how-it-works h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 3rem 2rem;
        margin-bottom: 1rem;
    }

    .service-card:last-child {
        margin-bottom: 0;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .hero-buttons,
    .about-buttons {        flex-direction: column;
        align-items: flex-start;
    }

    .about-content {
        padding: 0 20px;
    }

    .slider-nav {
        margin-top: 2rem;
        gap: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .about-image {
        height: 350px;
    }

    .about-text {
        padding: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about {
        background-position: center bottom;
        background-size: cover;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .hero {
        padding-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-overlay-card {
        margin-bottom: 4rem;
        padding: 1.2rem;
    }

    .hero-overlay-card h3 {
        font-size: 1.2rem;
    }

    .hero-overlay-card p {
        font-size: 0.9rem;
    }

    .about-text {
        padding: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about {
        background-position: center bottom;
        background-size: cover;
    }
}

.nav-link.active {
        color: #b8956a !important;
        font-weight: 600;
    }