       
        .hero-section {
            background: linear-gradient(135deg, var(--brand-color) 0%, var(--bg-dark-color) 100%);
            color: var(--title-color-dark);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .section-title {
            color: var(--title-color);
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title.white {
            color: var(--title-color-dark);
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .stats-section {
            background: var(--bg-color);
            padding: 80px 0;
        }

        .stat-card {
            background: var(--white-color);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(20, 89, 97, 0.08);
            border: 1px solid var(--border-color-thin);
            transition: all 0.3s ease;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(20, 89, 97, 0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-color);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-color);
            font-weight: 500;
            font-size: 1.1rem;
        }

        .values-section {
            background: var(--bg-color-2);
            padding: 100px 0;
        }

        .value-card {
            background: var(--white-color);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(116, 183, 78, 0.1);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            height: 100%;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(116, 183, 78, 0.15);
            border-color: var(--secondary-color);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), var(--bg-color-3));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--white-color);
        }

        .timeline-section {
            background: var(--white-color);
            padding: 100px 0;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--brand-color), var(--secondary-color));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: calc(50% + 40px);
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: calc(50% + 40px);
            text-align: left;
        }

        .timeline-content {
            background: var(--bg-color);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(20, 89, 97, 0.1);
            position: relative;
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            top: 20px;
            transform: translateX(-50%);
            background: var(--brand-color);
            color: var(--white-color);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            border: 4px solid var(--white-color);
            box-shadow: 0 4px 15px rgba(20, 89, 97, 0.3);
        }

        .leadership-section {
            background: var(--bg-color-2);
            padding: 100px 0;
        }

        .leader-card {
            background: var(--white-color);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(20, 89, 97, 0.08);
            border: 1px solid var(--border-color-2);
            transition: all 0.3s ease;
            height: 100%;
        }

        .leader-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(20, 89, 97, 0.12);
        }

        .leader-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-color), var(--secondary-color));
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--white-color);
            font-weight: 300;
        }

        .certifications-section {
            background: var(--white-color);
            padding: 80px 0;
        }

        .certification-badge {
            background: var(--bg-color-2);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .certification-badge:hover {
            background: var(--white-color);
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .certification-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--brand-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            color: var(--white-color);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(20, 89, 97, 0.3);
            color: var(--white-color);
        }

        .contact-cta {
            background: linear-gradient(135deg, var(--bg-dark-color) 0%, var(--brand-color) 100%);
            padding: 80px 0;
            color: var(--title-color-dark);
            text-align: center;
        }
        
        .story-section{
            background-color:var(--white-color);
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 60px;
                margin-right: 0;
                text-align: left;
            }
            
            .timeline-year {
                left: 20px;
                transform: translateX(-50%);
            }
            
            .hero-section {
                padding: 80px 0 60px;
            }
        }