/* =======================================
   NEW LOOK - GLOBAL STYLES & VARIABLES
   ======================================= */

:root {
    --primary-sage: #A3B18A;     /* Sage Green for main elements and accents */
    --warm-beige: #F2E8CF;       /* Warm Beige for backgrounds and secondary elements */
    --white-smoke: #FAFAFA;      /* White Smoke for neutral base and cards */
    --terracotta: #D68C45;       /* Terracotta for highlights and CTAs */
    --dark-sage: #8B9A73;        /* Darker sage for hover states */
    --soft-sage: #B8C5A1;        /* Lighter sage for subtle elements */
    --text-dark: #2F3E2D;        /* Dark green-tinted text */
    --text-medium: #4A5D47;      /* Medium green-tinted text */
    --white-color: #ffffff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-medium);
    line-height: 1.7;
    background-color: var(--white-smoke);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3 {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }

/* ========================
   BUTTONS & UTILITIES
   ======================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px; /* Rounded buttons */
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--terracotta);
    color: var(--white-color);
    box-shadow: 0 5px 15px rgba(214, 140, 69, 0.3); /* Terracotta shadow */
}

.btn-primary:hover {
    background-color: #C47A39; /* Darker terracotta on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 122, 57, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-sage);
    border-color: var(--primary-sage);
}

.btn-secondary:hover {
    background-color: var(--primary-sage);
    color: var(--white-color);
}

/* ========================
   HEADER & "FROSTED GLASS" NAV
   ======================== */

.main-header {
    background: rgba(253, 251, 247, 0.85); /* Semi-transparent bg */
    backdrop-filter: blur(10px); /* The magic blur effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem; /* Slightly larger logo */
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    gap: 15px; /* Increased space between logo and text */
}

.logo-img {
    height: 60px; /* Increased from 40px to 60px */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.main-nav ul { list-style: none; display: flex; align-items: center; }
.main-nav li { margin-left: 25px; }
.main-nav a { text-decoration: none; color: var(--text-medium); font-weight: 500; } /* Medium weight */
.main-nav a:not(.btn):hover { color: var(--primary-sage); }

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.95);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .main-nav.mobile-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2rem 0;
    }
    
    .main-nav li {
        margin: 0.5rem 0;
    }
}

/* ========================
   HERO SECTION WITH IMAGE
   ======================== */
.hero {
    color: var(--white-color);
    text-align: center;
    padding: 8rem 0; /* More vertical space */
    position: relative;
    background-color: var(--text-dark);
}
/* Dark overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(47, 62, 45, 0.8), rgba(47, 62, 45, 0.6)); /* Dark sage gradient overlay */
}
.hero .container {
    position: relative; /* Bring content above overlay */
}
.hero h1, .hero p {
    color: var(--white-color);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3); /* Text shadow for pop */
}
.hero h1 { font-size: 3.8rem; } /* Larger hero text */
.hero .subtitle { font-size: 1.3rem; max-width: 700px; margin: 1.2rem auto 2.8rem; font-weight: 300; }
.hero-buttons .btn { margin: 0 12px; }
.hero .btn-secondary { color: var(--white-color); border-color: var(--white-color); }
.hero .btn-secondary:hover { background: var(--white-color); color: var(--text-dark); }

/* Hero stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--white-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-testimonial {
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.9;
    font-size: 1.1rem;
}


/* ========================================================
   START OF UPDATED SECTION -- RESPONSIVE GRID INSTEAD OF SCROLLING
   ======================================================== */
.is-for-you { padding: 6rem 0; background-color: var(--warm-beige); }
.section-intro { text-align: center; max-width: 600px; margin: -2rem auto 3rem; font-size: 1.1rem; }

.features-row {
    display: grid; /* Use Grid for responsive layout */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Slightly wider cards for better proportions */
    gap: 2.5rem; /* More space between cards */
    max-width: 1200px; /* Limit max width for better readability */
    margin: 0 auto; /* Center the grid */
}

.feature-item {
    background: var(--white-color);
    padding: 3rem 2.5rem; /* More generous padding */
    border-radius: 20px; /* More rounded corners for modern look */
    text-align: center;
    box-shadow: 0 10px 40px rgba(47, 62, 45, 0.08); /* Deeper shadow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother easing */
    border: 2px solid transparent; /* Prepare for hover border */
    position: relative; /* For potential pseudo-elements */
    overflow: hidden; /* Clean look */
}
.feature-item:hover {
    transform: translateY(-15px) scale(1.02); /* Slight scale on hover for more dynamic feel */
    box-shadow: 0 20px 60px rgba(163, 177, 138, 0.2); /* Much stronger shadow on hover */
    border-color: var(--primary-sage); /* Sage border on hover */
    background: linear-gradient(135deg, var(--white-color) 0%, rgba(163, 177, 138, 0.02) 100%); /* Subtle gradient */
}
.feature-item i {
    font-size: 3.5rem; /* Larger icons */
    color: var(--primary-sage);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}
.feature-item:hover i {
    color: var(--dark-sage);
    transform: scale(1.1); /* Icon grows on hover */
}
.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.4rem; /* Slightly larger heading */
    font-weight: 600;
    line-height: 1.3;
}
.feature-item p {
    font-size: 1rem; /* Slightly larger text */
    color: var(--text-medium);
    line-height: 1.6;
    opacity: 0.9;
}

/* Interactive card overlays */
.interactive-card {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--dark-sage) 100%);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 2rem;
}

.interactive-card:hover .card-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ========================================================
   END OF UPDATED SECTION
   ======================================================== */


/* ========================
   HOW IT WORKS
   ======================== */
.how-it-works { padding: 6rem 0; background: var(--white-smoke); }
.steps-container { display: flex; justify-content: space-between; text-align: center; gap: 2.5rem; }
.step { flex: 1; }
.step-number {
    width: 65px; height: 65px; /* Slightly larger number circles */
    background: var(--primary-sage);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    box-shadow: 0 5px 15px rgba(163, 177, 138, 0.2);
}
.step h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.step p {
    font-size: 0.95rem;
}

/* Step buttons */
.step-btn {
    background: var(--primary-sage);
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.step-btn:hover {
    background: var(--dark-sage);
    transform: translateY(-2px);
}

/* ========================
   SUCCESS STORIES SECTION
   ======================== */
.success-stories {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white-smoke) 0%, rgba(163, 177, 138, 0.05) 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.story-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(47, 62, 45, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(163, 177, 138, 0.2);
    border-color: var(--primary-sage);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-avatars {
    display: flex;
    margin-right: 1rem;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-sage), var(--terracotta));
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: -10px;
    border: 3px solid var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.story-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.story-age {
    color: var(--text-medium);
    font-size: 0.9rem;
    opacity: 0.8;
}

.story-problem {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(163, 177, 138, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-sage);
}

.story-transformation {
    margin: 1.5rem 0;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.before, .after {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.before {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
}

.after {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
}

.label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.before .label {
    color: #e74c3c;
}

.after .label {
    color: #2ecc71;
}

.story-quote {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--terracotta);
    margin: 1.5rem 0;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(163, 177, 138, 0.2);
}

.sessions {
    background: var(--primary-sage);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.outcome {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 0.9rem;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--dark-sage) 100%);
    border-radius: 20px;
    color: var(--white-color);
}

.cta-section h3 {
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========================
   PRICING SECTION
   ======================== */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--warm-beige);
}
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}
.pricing-card {
    background: linear-gradient(135deg, var(--white-smoke) 0%, var(--white-color) 100%); /* Clean gradient */
    border: 1px solid rgba(163, 177, 138, 0.2);
    border-radius: 15px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(47, 62, 45, 0.08);
    transition: all 0.4s ease; /* Smooth transition for all properties */
    flex: 1;
    min-width: 320px; /* Minimum width for pricing cards */
    max-width: 450px; /* Max width to keep them manageable */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card:hover {
    background: linear-gradient(135deg, rgba(242, 232, 207, 0.3) 0%, rgba(163, 177, 138, 0.1) 100%); /* Sage-beige gradient on hover */
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(163, 177, 138, 0.25); /* Sage shadow on hover */
    border-color: var(--primary-sage); /* Sage border on hover */
}

.pricing-card .card-header {
    margin-bottom: 2rem;
}
.pricing-card .card-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.pricing-card .tagline {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.pricing-card .card-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 2rem;
    line-height: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-card .currency {
    font-size: 1.8rem;
    vertical-align: super;
    margin-right: 5px;
}
.pricing-card .per-hour, .pricing-card .per-month {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}
.pricing-card .save-tag {
    position: absolute;
    top: -15px;
    right: 0;
    background-color: #e74c3c; /* Red for savings */
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pricing-card .features-list {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    color: var(--text-medium);
    font-weight: 500;
    flex-grow: 1; /* Pushes button to bottom */
}
.pricing-card .features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.pricing-card .features-list i {
    color: var(--primary-sage);
    font-size: 1.2rem;
    margin-right: 10px;
}

.pricing-card .btn-primary {
    width: 100%;
}

.disclaimer {
    max-width: 800px;
    margin: 4rem auto 0;
    font-size: 0.85rem;
    color: #66758a;
    text-align: center;
    line-height: 1.5;
}


/* Featured card styling */
.featured-card {
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--dark-sage) 100%); /* Sage gradient */
    border: 2px solid var(--primary-sage);
    box-shadow: 0 15px 45px rgba(163, 177, 138, 0.2);
    color: var(--white-color);
    transition: all 0.4s ease; /* Smooth transition for featured card */
}
.featured-card:hover {
    background: linear-gradient(135deg, var(--dark-sage) 0%, #7A8A61 100%); /* Deeper sage gradient on hover */
    box-shadow: 0 20px 50px rgba(163, 177, 138, 0.35); /* Stronger shadow on hover */
    transform: translateY(-12px); /* Slightly more lift than regular cards */
}
.featured-card .card-header h3,
.featured-card .tagline,
.featured-card .features-list,
.featured-card .per-month {
    color: var(--white-color);
}
.featured-card .card-price {
    color: var(--white-color);
}
.featured-card .btn-primary {
    background-color: var(--terracotta);
    box-shadow: 0 5px 15px rgba(214, 140, 69, 0.3);
}
.featured-card .btn-primary:hover {
    background-color: #C47A39;
    box-shadow: 0 8px 20px rgba(196, 122, 57, 0.4);
}
.featured-card .features-list i {
    color: var(--white-color);
}

/* ========================
   ABOUT TEASER
   ======================== */
.about-teaser { padding: 6rem 0; background-color: var(--white-smoke); }
.about-teaser .container { display: flex; align-items: center; gap: 4rem; }
.about-content { flex: 1.2; }
.about-image {
    flex: 1;
    height: 450px;
    background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&q=80&w=1888') no-repeat center center/cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(163, 177, 138, 0.15); /* Sage shadow */
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials { padding: 6rem 0; background-color: var(--warm-beige); }
.testimonial { max-width: 750px; margin: 0 auto 2.5rem; text-align: center; position: relative; }
.testimonial blockquote {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.4;
    padding: 0 1rem;
}
/* Large background quote icon for styling */
.testimonial::before {
    content: '“';
    font-family: 'Times New Roman', Times, serif;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7rem;
    color: var(--primary-sage);
    opacity: 0.08;
    z-index: -1;
}
.testimonial cite { font-weight: 600; color: var(--terracotta); font-style: normal; }

/* ========================
   MODAL STYLES
   ======================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white-color);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--text-medium);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--terracotta);
}

.booking-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(163, 177, 138, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
    background: var(--white-smoke);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-sage);
    background: var(--white-color);
}

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

/* ========================
   FOOTER
   ======================== */
.main-footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 3rem 0;
}
.main-footer a { color: var(--terracotta); text-decoration: none; }
.main-footer a:hover { text-decoration: underline; }

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 992px) { /* Adjust for larger tablets/smaller desktops */
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        max-width: 90%; /* Allow cards to take more width */
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .main-header .container { flex-direction: column; }
    .main-nav ul { margin-top: 1rem; padding: 0; }
    .main-nav li { margin: 0 10px; }
    .hero { padding: 6rem 0; }

    .steps-container, .about-teaser .container { flex-direction: column; }
    .about-image { width: 100%; height: 300px; }

    .testimonial blockquote { font-size: 1.3rem; }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
    
    .story-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .container { padding: 0 15px; }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn { margin: 0; }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    .pricing-card .card-price {
        font-size: 3.5rem;
    }
    .pricing-card .save-tag {
        top: -25px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .story-avatars {
        flex-direction: column;
        gap: 5px;
    }
    
    .avatar {
        margin-right: 0;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
