/* Hero Section  */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--pure-white);
            margin-top: 80px;
        }
        
        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--pure-white);
            animation: fadeIn 1s ease-out;
        }
        
        .hero-content p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 30px;
            animation: fadeIn 1.2s ease-out;
        }
        
        /* Benefits Overview Section */
        .benefits-section {
            padding: 80px 0;
            background-color: var(--pure-white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--shea-butter);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--neutral-dark);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-card {
            background-color: var(--almond-milk);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px var(--light-shadow);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px var(--medium-shadow);
        }
        
        .benefit-icon {
            font-size: 40px;
            color: var(--shea-butter);
            margin-bottom: 20px;
        }
        
        .benefit-title {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .benefit-description {
            font-size: 15px;
            color: var(--neutral-dark);
        }
        
        /* Membership Tiers Section */
        .tiers-section {
            padding: 80px 0;
            background-color: var(--cream-ivory);
            position: relative;
            overflow: hidden;
        }
        
        .tiers-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1596178060810-72f53ce9a65c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .tiers-container {
            position: relative;
            z-index: 1;
        }
        
        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .tier-card {
            background-color: var(--pure-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--light-shadow);
            transition: all 0.3s ease;
            position: relative;
        }
        
        /* Tier Card Shine Effect */
        .tier-card:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            transition: transform 0.7s;
            opacity: 0;
            z-index: 2;
        }
        
        .tier-card:hover:before {
            opacity: 1;
            transform: rotate(30deg) translate(100%, -100%);
        }
        
        .tier-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px var(--medium-shadow);
        }
        
        .tier-header {
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .tier-basic .tier-header {
            background-color: var(--almond-milk);
        }
        
        .tier-premium .tier-header {
            background-color: var(--honey-gold);
            color: var(--cocoa-brown);
        }
        
        .tier-vip .tier-header {
            background-color: var(--shea-butter);
            color: var(--pure-white);
        }
        
        .tier-vip .tier-name {
            color: var(--pure-white);
        }
        
        .tier-name {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .tier-price {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .tier-price span {
            font-size: 16px;
            font-weight: normal;
        }
        
        .tier-description {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .tier-features {
            padding: 30px;
        }
        
        .tier-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .tier-feature i {
            color: var(--olive-green);
            margin-right: 10px;
            font-size: 18px;
        }
        
        .tier-feature span {
            font-size: 15px;
        }
        
        .tier-cta {
            padding: 0 30px 30px;
            text-align: center;
        }
        
        /* Points System Section */
        .points-section {
            padding: 80px 0;
            background-color: var(--pure-white);
        }
        
        .points-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .points-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .points-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px var(--light-shadow);
        }
        
        .points-content {
            flex: 1;
            min-width: 300px;
        }
        
        .points-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .points-content h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--shea-butter);
            bottom: 0;
            left: 0;
        }
        
        .points-list {
            margin-top: 30px;
        }
        
        .points-item {
            display: flex;
            margin-bottom: 25px;
        }
        
        .points-icon {
            width: 50px;
            height: 50px;
            background-color: var(--almond-milk);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .points-icon i {
            color: var(--shea-butter);
            font-size: 20px;
        }
        
        .points-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .points-details p {
            font-size: 15px;
            color: var(--neutral-dark);
        }
        
        /* Counter Section */
        .counter-section {
            padding: 60px 0;
            background-color: var(--shea-butter);
            color: var(--pure-white);
            text-align: center;
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .counter-item {
            padding: 20px;
        }
        
        .counter-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .counter-label {
            font-size: 16px;
            opacity: 0.9;
        }
        
        /* Referral Section */
        .referral-section {
            padding: 80px 0;
            background-color: var(--almond-milk);
        }
        
        .referral-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .referral-content {
            flex: 1;
            min-width: 300px;
        }
        
        .referral-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .referral-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px var(--light-shadow);
        }
        
        .referral-steps {
            margin-top: 30px;
        }
        
        .referral-step {
            display: flex;
            margin-bottom: 25px;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background-color: var(--shea-butter);
            color: var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step-content h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .step-content p {
            font-size: 15px;
            color: var(--neutral-dark);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1596178060810-72f53ce9a65c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            color: var(--pure-white);
        }
        
        .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--pure-white);
        }
        
        .cta-content p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        @keyframes heartbeat {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .tier-card {
                max-width: 350px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
            height: 60vh;
        }

        .hero-content{
            padding: 3px;
        }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
            
            .points-content h2,
            .referral-content h2 {
                font-size: 28px;
            }
            
            .counter-number {
                font-size: 36px;
            }
            
            .cta-content h2 {
                font-size: 28px;
            }
        }