 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .testimonial-section {
            padding: 60px 20px;
            background: linear-gradient(to bottom, #ffffff, #fef9f3);
        }

        .testimonial-label {
            text-align: center;
            color: #f59e0b;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .testimonial-heading {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .testimonial-subheading {
            text-align: center;
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 50px;
        }

        .carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .carousel-track {
            display: flex;
            gap: 24px;
            overflow: hidden;
            scroll-behavior: smooth;
        }

        .testimonial-card {
            flex: 0 0 calc(33.333% - 16px);
            background: white;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid #f3f4f6;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .quote-icon {
            width: 40px;
            height: 40px;
            background: #fef3c7;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #f59e0b;
            margin-bottom: 16px;
        }

        .star-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .star {
            color: #fbbf24;
            font-size: 16px;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #8b5cf6;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 18px;
        }

        .author-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 12px;
            color: #6b7280;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 1px solid #e5e7eb;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #6b7280;
            transition: all 0.3s ease;
            z-index: 10;
            display: none;
        }

        .carousel-btn:hover {
            background: #f9fafb;
            color: #1f2937;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .carousel-btn-prev {
            left: 0;
        }

        .carousel-btn-next {
            right: 0;
        }

        /* Curriculum Section */
        .curriculum-section {
            padding: 60px 20px;
            background: white;
        }

        .curriculum-label {
            text-align: center;
            color: #3b82f6;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .curriculum-heading {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .curriculum-subheading {
            text-align: center;
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 50px;
        }

        .curriculum-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .curriculum-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            border: 2px solid #f3f4f6;
            transition: all 0.3s ease;
        }

        .curriculum-card:nth-child(1) {
            border-top: 4px solid #3b82f6;
        }

        .curriculum-card:nth-child(2) {
            border-top: 4px solid #8b5cf6;
        }

        .curriculum-card:nth-child(3) {
            border-top: 4px solid #ec4899;
        }

        .curriculum-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .board-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .board-name {
            font-size: 20px;
            font-weight: 700;
            color: #1f2937;
        }

        .schools-count {
            font-size: 12px;
            color: #6b7280;
            background: #f3f4f6;
            padding: 4px 12px;
            border-radius: 12px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 14px;
            color: #4b5563;
        }

        .feature-icon {
            width:55px;
            height:55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .curriculum-card:nth-child(1) .feature-icon {
            background: #dbeafe;
            color: #3b82f6;
        }

        .curriculum-card:nth-child(2) .feature-icon {
            background: #ede9fe;
            color: #8b5cf6;
        }

        .curriculum-card:nth-child(3) .feature-icon {
            background: #fce7f3;
            color: #ec4899;
        }

        /* Certifications Section */
        .certifications-section {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .cert-heading {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 32px;
        }

        .cert-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #4b5563;
        }

        .cert-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #10b981;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .cert-logos {
            display: flex;
            justify-content: center;
            gap: 80px;
            align-items: center;
        }

        .cert-logo-item {
            text-align: center;
        }

        .cert-logo {
            width: 60px;
            height: 60px;
            background: #f3f4f6;
            border-radius: 12px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-left: auto;
            margin-right: auto;
        }

        .cert-logo-text {
            font-size: 13px;
            color: #6b7280;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 12px);
            }

            .curriculum-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .testimonial-heading,
            .curriculum-heading {
                font-size: 24px;
            }

            .carousel-wrapper {
                padding: 0 40px;
            }

            .testimonial-card {
                flex: 0 0 100%;
            }

            .curriculum-grid {
                grid-template-columns: 1fr;
            }

            .cert-logos {
                gap: 40px;
            }

            .carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-section,
            .curriculum-section {
                padding: 40px 15px;
            }

            .carousel-wrapper {
                padding: 0 35px;
            }

            .cert-badges {
                gap: 20px;
            }

            .cert-logos {
                flex-direction: column;
                gap: 30px;
            }
        }