 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* Exam Hero */
        .exam-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 20px 70px;
            position: relative;
            overflow: hidden;
        }

        .exam-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
            z-index: 1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 24px;
        }

        .highlight {
            color: #28a745;
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #28a745, #20c997);
            border-radius: 2px;
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 40px;
        }

        .hero-features {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 12px 20px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
        }

        .feature i {
            color: #28a745;
            font-size: 1.1rem;
        }

        .feature span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #495057;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 18px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #28a745;
            padding: 18px 32px;
            border: 2px solid #28a745;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #28a745;
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Visual */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .exam-preview {
            position: relative;
        }

        .exam-interface {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
            max-width: 400px;
        }

        .exam-header {
            margin-bottom: 20px;
        }

        .exam-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #f1f3f4;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 5px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #28a745, #20c997);
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .progress-text {
            font-size: 0.8rem;
            color: #6c757d;
        }

        .exam-question h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .exam-question p {
            color: #495057;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .exam-options {
            margin-bottom: 20px;
        }

        .option {
            padding: 10px 15px;
            margin-bottom: 8px;
            border: 2px solid #f1f3f4;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .option.selected {
            border-color: #28a745;
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
        }

        .exam-controls {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .btn-exam {
            padding: 10px 20px;
            border: 2px solid #e9ecef;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-exam.primary {
            background: #28a745;
            border-color: #28a745;
            color: white;
        }

        .comfort-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }

        /* Exam Benefits */
        .exam-benefits {
            padding: 70px 20px;
            background: #ffffff;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .benefit-icon i {
            font-size: 2rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
        }

        .benefit-card p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
        }

        /* Exam Process */
        .exam-process {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .process-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .step-content p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .step-features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Exam Details */
        .exam-details {
            padding: 70px 20px;
            background: #ffffff;
        }

        .details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .details-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: flex-start;
        }

        .details-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .details-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .details-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .detail-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .detail-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .detail-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 5px;
        }

        .detail-content p {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.5;
        }

        .details-visual {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .stat-highlight {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            text-align: center;
        }

        .stat-highlight .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .stat-highlight .stat-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #28a745;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 8px;
        }

        .stat-highlight p {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.4;
        }

        /* Exam Topics */
        .exam-topics {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .topics-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .topic-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #28a745, #20c997);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .topic-card:hover::before {
            transform: scaleX(1);
        }

        .topic-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .topic-icon {
            width: 50px;
            height: 50px;
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .topic-weight {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .topic-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin: 15px 0 10px 0;
        }

        .topic-description {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .topic-questions {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
        }

        /* Exam CTA */
        .exam-cta {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #495057;
            font-weight: 500;
        }

        .cta-feature i {
            color: #28a745;
            font-size: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .cta-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .cta-guarantee i {
            color: #28a745;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content,
            .details-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title,
            .details-title,
            .cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .exam-hero {
                padding: 100px 20px 50px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .benefits-grid,
            .topics-grid {
                grid-template-columns: 1fr;
            }

            .step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .hero-cta,
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .cta-features {
                flex-direction: column;
                gap: 15px;
            }

            .hero-features {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .benefit-card,
            .topic-card,
            .stat-highlight {
                padding: 25px 20px;
            }

            .exam-interface {
                padding: 20px;
                max-width: 320px;
            }

            .exam-question p {
                font-size: 0.9rem;
            }

            .option {
                font-size: 0.85rem;
                padding: 8px 12px;
            }
        }