
        /* About Page Specific Styles */
        .about-hero {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.95) 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: shimmer 15s infinite linear;
        }
        
        @keyframes shimmer {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .about-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .about-hero p {
            font-size: 20px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .about-section h2 {
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .about-section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin: 15px 0 0;
            border-radius: 2px;
        }
        
        .about-section p {
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }
        
        .value-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 32px;
        }
        
        .value-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .value-card p {
            color: #666;
            font-size: 15px;
            margin-bottom: 0;
        }
        
        .stats-section {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.95) 100%);
            padding: 60px 0;
            border-radius: 20px;
            margin: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-item h3 {
            color: white !important;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 0;
            color: white;
        }
        
        .team-section {
            background: white;
            padding: 80px 0;
            border-radius: 20px;
            /*margin: 60px 0;*/
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-member {
            text-align: center;
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid var(--primary);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }
        
        .team-member h4 {
            color: var(--dark);
            margin-bottom: 5px;
            font-size: 20px;
        }
        
        .team-member p {
            color: #666;
            font-size: 14px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin: 60px 0;
        }
        
        .cta-section h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 32px;
        }
        
        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            font-size: 18px;
        }
        
        .cta-btn {
            background: white;
            color: var(--primary);
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }
        
        .promise-list {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .promise-list li {
            line-height: 2.5;
            color: #666;
            font-size: 16px;
        }
        
        .promise-list li i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 36px;
            }
            .about-hero p {
                font-size: 16px;
            }
            .cta-section {
                padding: 40px 20px;
            }
            .stats-section {
                padding: 40px 0;
            }
            .stat-item h3 {
                font-size: 36px;
            }
        }
    