     /* Hero Section */
    .hero {
        height: 100vh;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: var(--pure-white);
        position: relative;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        color: var(--pure-white);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s forwards 0.5s;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s forwards 0.8s;
    }

    .hero-buttons {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s forwards 1.1s;
    }

    .hero-buttons .btn {
        margin: 0 10px;
    }

    .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--pure-white);
        font-size: 1.5rem;
        animation: bounce 2s infinite;
        cursor: pointer;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-20px);
        }
        60% {
            transform: translateY(-10px);
        }
    }

    /* About Section */
    .about {
        background-color: var(--pure-white);
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .about-image {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: var(--shea-butter);
    }

    .about-content p {
        margin-bottom: 20px;
        line-height: 1.8;
    }

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

    .about-feature {
        display: flex;
        align-items: center;
    }

    .about-feature i {
        font-size: 1.5rem;
        color: var(--shea-butter);
        margin-right: 15px;
    }

    /* Services Section */
    .services {
        background-color: var(--cream-ivory);
    }

    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background-color: var(--pure-white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

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

    .service-img {
        height: 200px;
        overflow: hidden;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .service-card:hover .service-img img {
        transform: scale(1.1);
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--shea-butter);
    }

    .service-content p {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* Wellness Categories Section */
    .wellness-categories {
        background-color: var(--pure-white);
    }

    .categories-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .category-card {
        position: relative;
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .category-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .category-card:hover .category-img img {
        transform: scale(1.1);
    }

    .category-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 30%, transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 25px;
        transition: all 0.3s ease;
    }

    .category-card:hover .category-overlay {
        background: linear-gradient(to top, rgba(214, 123, 93, 0.8) 30%, transparent);
    }

    .category-overlay h3 {
        color: var(--pure-white);
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .category-overlay p {
        color: var(--pure-white);
        margin-bottom: 15px;
        opacity: 0.8;
    }

    .category-overlay .btn {
        align-self: flex-start;
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Membership Section */
    .membership {
        background-color: var(--olive-green);
        color: var(--pure-white);
    }

    .membership .section-title h2 {
        color: var(--pure-white);
    }

    .membership .section-title h2::after {
        background-color: var(--honey-gold);
    }

    .membership-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .membership-card {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .membership-card:hover {
        transform: translateY(-10px);
        background-color: rgba(255, 255, 255, 0.2);
    }

    .membership-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: all 0.5s ease;
    }

    .membership-card:hover::before {
        opacity: 1;
    }

    .membership-icon {
        font-size: 3rem;
        color: var(--honey-gold);
        margin-bottom: 20px;
    }

    .membership-card h3 {
        color: var(--pure-white);
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .membership-card p {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .membership-benefits {
        list-style: none;
        margin-bottom: 30px;
        text-align: left;
    }

    .membership-benefits li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .membership-benefits li i {
        color: var(--honey-gold);
        margin-right: 10px;
    }

    .membership-price {
        font-size: 2rem;
        font-weight: 700;
        color: var(--honey-gold);
        margin-bottom: 20px;
    }

    .membership-price span {
        font-size: 1rem;
        font-weight: 400;
    }

    /* Testimonials */
    .testimonials {
        background-color: var(--pure-white);
        padding: 100px 0;
    }

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

    .testimonial-slider {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testimonial {
        min-width: 100%;
        padding: 30px;
        text-align: center;
    }

    .testimonial-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
        border: 3px solid var(--honey-gold);
    }

    .testimonial-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.8;
        position: relative;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        content: '"';
        font-size: 2rem;
        color: var(--honey-gold);
    }

    .testimonial-author {
        font-weight: 600;
        color: var(--shea-butter);
    }

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

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

    .dot.active {
        background-color: var(--shea-butter);
        transform: scale(1.2);
    }

    /* Instagram Section */
    .instagram {
        background-color: var(--cream-ivory);
    }

    .instagram-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .instagram-item {
        position: relative;
        height: 200px;
        overflow: hidden;
        border-radius: 10px;
    }

    .instagram-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .instagram-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(214, 123, 93, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .instagram-item:hover img {
        transform: scale(1.1);
    }

    .instagram-item:hover .instagram-overlay {
        opacity: 1;
    }

    .instagram-overlay i {
        color: var(--pure-white);
        font-size: 2rem;
    }

    .instagram-follow {
        text-align: center;
        margin-top: 30px;
    }

    .instagram-follow a {
        color: var(--shea-butter);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .instagram-follow a i {
        margin-right: 10px;
    }

    .instagram-follow a:hover {
        color: var(--olive-green);
    }

    /* Newsletter */
    .newsletter {
        background-color: var(--shea-butter);
        color: var(--pure-white);
        padding: 60px 0;
    }

    .newsletter-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newsletter h2 {
        color: var(--pure-white);
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .newsletter p {
        margin-bottom: 30px;
        max-width: 600px;
    }

    .newsletter-form {
        display: flex;
        max-width: 500px;
        width: 100%;
    }

    .newsletter-form input {
        flex: 1;
        padding: 15px 20px;
        border: none;
        border-radius: 30px 0 0 30px;
        font-size: 1rem;
        outline: none;
    }

    .newsletter-form button {
        padding: 0 30px;
        background-color: var(--olive-green);
        color: var(--pure-white);
        border: none;
        border-radius: 0 30px 30px 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
        background-color: var(--cocoa-brown);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .hero h1 {
            font-size: 2.8rem;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .about-container {
            grid-template-columns: 1fr;
        }

        .about-image {
            margin-bottom: 30px;
        }
    }

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

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

        .section-title h2 {
            font-size: 1.5rem;
        }

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

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-form input {
            border-radius: 30px;
            margin-bottom: 10px;
        }

        .newsletter-form button {
            border-radius: 30px;
            padding: 15px;
        }
    }