
        :root {
            --primary-color: #297ebd;
            --secondary-color: #75b407;
            --neutral-color: #f8f9fa;
            --dark-color: #2c3e50;
            --light-color: #ffffff;
        }

        .accreditation-section {
            background: linear-gradient(135deg, var(--neutral-color) 0%, #e9ecef 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            padding-top: 200px;
        }

        .accreditation-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23297ebd" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            animation: fadeInUp 1s ease-out;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
            animation: expandWidth 1.5s ease-out 0.5s both;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--dark-color);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .accreditation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .accreditation-card {
            background: var(--light-color);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(41, 126, 189, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out both;
            border: 2px solid transparent;
        }

        .accreditation-card:nth-child(1) { animation-delay: 0.2s; }
        .accreditation-card:nth-child(2) { animation-delay: 0.4s; }
        .accreditation-card:nth-child(3) { animation-delay: 0.6s; }

        .accreditation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .accreditation-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(41, 126, 189, 0.2);
            border-color: var(--primary-color);
        }

        .accreditation-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse 2s infinite;
        }

        .card-icon i {
            font-size: 2.5rem;
            color: var(--light-color);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .card-description {
            color: var(--dark-color);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .verification-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--secondary-color), #8bc34a);
            color: var(--light-color);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .stats-container {
            background: var(--light-color);
            border-radius: 20px;
            padding: 40px;
            margin-top: 60px;
            box-shadow: 0 15px 45px rgba(41, 126, 189, 0.1);
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
            counter-reset: number;
            animation: countUp 2s ease-out 1s both;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--dark-color);
            font-weight: 500;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 80px;
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 10px rgba(117, 180, 7, 0.3);
            }
            to {
                box-shadow: 0 0 20px rgba(117, 180, 7, 0.6);
            }
        }

        @keyframes countUp {
            from {
                transform: scale(0.5);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .accreditation-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .accreditation-card {
                padding: 30px 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
