        :root {
            --primary-yellow: #FFD700;
            --accent-black: #1a1a1a;
            --pure-white: #ffffff;
            --soft-gray: #f8f9fa;
            --success-green: #28a745;
            --text-dark: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1758614078621-1e48112377cb?q=80&w=1921&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: bottom;
            padding: 120px 0 80px;
            color: var(--pure-white);
            text-align: center;
        }
        
        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Hero Section */
        .hero-section {
            background: var(--soft-gray);
            padding: 80px 0;
        }
        
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .hero-content h2 {
            font-size: 2.5rem;
            color: var(--accent-black);
            margin-bottom: 1.5rem;
        }
        
        .hero-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        /* Mission Section */
        .mission-section {
            padding: 80px 0;
            background: var(--pure-white);
        }
        
        .mission-card {
            background: var(--soft-gray);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .mission-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--accent-black);
        }
        
        .mission-title {
            font-size: 1.5rem;
            color: var(--accent-black);
            margin-bottom: 1rem;
        }
        
        .mission-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: var(--soft-gray);
        }
        
        .team-photo {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .team-content h3 {
            font-size: 2rem;
            color: var(--accent-black);
            margin-bottom: 1.5rem;
        }
        
        .team-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .team-features {
            list-style: none;
            padding: 0;
        }
        
        .team-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }
        
        .team-features li i {
            color: var(--success-green);
            margin-right: 0.5rem;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--accent-black);
            color: var(--pure-white);
            text-align: center;
        }
        
        .stat-item {
            margin-bottom: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-yellow);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: var(--pure-white);
        }
        
        .value-card {
            background: var(--soft-gray);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .value-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        
        .value-title {
            font-size: 1.3rem;
            color: var(--accent-black);
            margin-bottom: 1rem;
        }
        
        .value-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Service Areas */
        .service-areas {
            padding: 80px 0;
            background: var(--soft-gray);
        }
        
        .area-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .area-item {
            background: var(--pure-white);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .area-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .area-icon {
            font-size: 2.5rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        .area-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent-black);
            margin-bottom: 0.5rem;
        }
        
        .area-distance {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--primary-yellow);
            text-align: center;
            color: var(--accent-black);
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .btn-primary {
            background: var(--accent-black);
            color: var(--pure-white);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 10px;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            color: var(--pure-white);
        }
        
        .btn-outline-light {
            border: 2px solid var(--accent-black);
            color: var(--accent-black);
            background: transparent;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 10px;
        }
        
        .btn-outline-light:hover {
            background: var(--accent-black);
            color: var(--pure-white);
        }
        
        /* Footer */
        .footer {
            background: var(--accent-black);
            color: var(--pure-white);
            padding: 50px 0 30px;
        }
        
        .footer h5 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--primary-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #999;
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: var(--pure-white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: var(--pure-white);
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .counter {
            font-variant-numeric: tabular-nums;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
    