        :root {
            --light-green: #7ed56f;
            --medium-green: #55c57a;
            --dark-green: #28b485;
            --dark-black: #212529;
            --light-yellow: #ffeb3b;
            --dark-blue: #0a2463;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* Why Us Section */
        .why-us {
            background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-green) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 5rem 0;
        }
        
        .why-us::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://placehold.co/1920x1080?text=Gym+Background') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            color: var(--light-yellow);
        }
        
        .why-us-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
        }
        
        .why-us-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .why-us-card::after {
            content: "";
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background: url('https://placehold.co/200x200?text=Pattern') center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .why-us-icon {
            font-size: 2.5rem;
            color: var(--light-yellow);
            margin-bottom: 1.5rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--light-yellow);
            margin-bottom: 1rem;
        }
        
        /* We Offer Section */
        .we-offer {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-green) 100%);
            color: white;
        }
        
        .offer-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .offer-img {
            height: 150px;
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-yellow) 100%);
            color: #333;
        }
        
        .testimonial-slider {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 2rem;
            margin: 0 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            min-height: 300px;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 3px solid var(--light-yellow);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--dark-green);
        }
        
        .slider-nav {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .why-us-card, .offer-card {
                padding: 1.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .why-us-icon {
                font-size: 2rem;
            }
        }
    