       /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* ========================================
           HERO SECTION - Two Column Design
           ======================================== */
        .er-hero {
            position: relative;
            min-height: 620px;
            background: linear-gradient(135deg, var(--er-deep) 0%, var(--er-navy) 50%, var(--er-deep) 100%);
            padding: 140px 60px 100px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .er-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .er-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 155, 171, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }
        .er-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }
        /* Floating blocks decoration */
        .er-hero-blocks {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .er-block {
            position: absolute;
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(2px);
        }
        .er-block-1 { width: 140px; height: 100px; top: 12%; right: 8%; transform: rotate(-6deg); animation: floatBlock 6s ease-in-out infinite; }
        .er-block-2 { width: 100px; height: 80px; top: 55%; right: 22%; transform: rotate(4deg); animation: floatBlock 8s ease-in-out infinite 1s; border-color: rgba(255,255,255,0.08); }
        .er-block-3 { width: 80px; height: 60px; top: 75%; right: 6%; transform: rotate(-3deg); animation: floatBlock 7s ease-in-out infinite 0.5s; }
        @keyframes floatBlock {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        /* Two-column container */
        .er-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        /* Left content */
        .er-hero-content {
            color: #ffffff;
        }
        .er-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.25);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 28px;
        }
        .er-hero-eyebrow-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--er-gold-muted) 0%, var(--er-gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .er-hero-eyebrow-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--er-deep);
        }
        .er-hero-eyebrow span {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--er-gold);
        }
        .er-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(36px, 4.5vw, 56px);
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin: 0 0 24px;
        }
        .er-hero-title span {
            background: linear-gradient(135deg, var(--er-gold-muted) 0%, var(--er-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .er-hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin: 0 0 32px;
            max-width: 520px;
        }
        /* Hero Features */
        .er-hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 36px;
        }
        .er-hero-feature {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 18px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }
        .er-hero-feature svg {
            width: 18px;
            height: 18px;
            stroke: var(--er-gold);
        }
        /* Hero CTAs */
        .er-hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .er-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--er-gold-muted) 0%, var(--er-gold) 100%);
            color: var(--er-deep);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
        }
        .er-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
            color: var(--er-deep);
        }
        .er-btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        .er-btn-primary:hover svg {
            transform: translateX(4px);
        }
        .er-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            padding: 16px 32px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .er-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
            color: #ffffff;
        }
        /* Right side: Requirements Preview Card */
        .er-hero-preview {
            position: relative;
        }
        .er-preview-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 36px;
            position: relative;
            overflow: hidden;
        }
        .er-preview-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--er-gold-muted), var(--er-gold), var(--er-teal));
        }
        .er-preview-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            text-align: center;
        }
        /* Requirements checklist items */
        .er-preview-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .er-preview-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        .er-preview-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(4px);
        }
        .er-preview-item-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .er-preview-item-icon.academic { background: rgba(59, 130, 246, 0.2); }
        .er-preview-item-icon.english { background: rgba(34, 197, 94, 0.2); }
        .er-preview-item-icon.docs { background: rgba(168, 85, 247, 0.2); }
        .er-preview-item-icon svg {
            width: 22px;
            height: 22px;
        }
        .er-preview-item-icon.academic svg { stroke: #3b82f6; }
        .er-preview-item-icon.english svg { stroke: #22c55e; }
        .er-preview-item-icon.docs svg { stroke: #a855f7; }
        .er-preview-item-text {
            flex: 1;
        }
        .er-preview-item-label {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }
        .er-preview-item-desc {
            font-family: var(--font-body);
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
        }
        .er-preview-item-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .er-preview-item-check svg {
            width: 14px;
            height: 14px;
            stroke: #22c55e;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .er-hero {
                padding: 120px 40px 80px;
            }
            .er-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .er-preview-card {
                max-width: 500px;
                margin: 0 auto;
            }
            .er-hero-blocks {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .er-hero {
                padding: 120px 24px 60px;
                min-height: auto;
            }
            .er-hero-title {
                font-size: 32px;
            }
            .er-hero-subtitle {
                font-size: 1rem;
            }
            .er-hero-features {
                flex-direction: column;
            }
            .er-hero-cta {
                flex-direction: column;
            }
            .er-btn-primary, .er-btn-secondary {
                justify-content: center;
            }
            .er-preview-card {
                padding: 24px;
            }
        }

        /* ========================================
           SECTION 1: General Academic Entry Requirements
           ======================================== */
        .er-section-1 {
            background: #fff;
            padding: 100px 60px;
        }
        .er-section-1-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .er-section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .er-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(74, 155, 171, 0.1) 0%, rgba(74, 155, 171, 0.05) 100%);
            border: 1px solid rgba(74, 155, 171, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 20px;
        }
        .er-section-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--er-teal);
        }
        .er-section-badge {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--er-teal);
        }
        .er-section-title {
            font-family: var(--font-heading);
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 700;
            color: var(--er-deep);
            margin: 0 0 16px;
        }
        .er-section-intro {
            font-size: 1.05rem;
            color: var(--er-text-light);
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto 24px;
        }
        .er-section-reassurance {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(74, 155, 171, 0.08);
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--er-teal);
        }
        .er-section-reassurance svg {
            width: 18px;
            height: 18px;
        }

        /* Accordion */
        .er-accordion {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .er-accordion-item {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .er-accordion-item:hover {
            border-color: rgba(74, 155, 171, 0.3);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }
        .er-accordion-item.active {
            border-color: var(--er-teal);
            box-shadow: 0 8px 30px rgba(74, 155, 171, 0.12);
        }
        .er-accordion-header {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 28px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .er-accordion-header:hover {
            background: rgba(0,0,0,0.01);
        }
        .er-accordion-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .er-accordion-icon svg {
            width: 26px;
            height: 26px;
        }
        .er-accordion-icon.ug {
            background: linear-gradient(135deg, rgba(74, 155, 171, 0.15) 0%, rgba(74, 155, 171, 0.05) 100%);
        }
        .er-accordion-icon.ug svg { stroke: var(--er-teal); }
        .er-accordion-icon.pgt {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
        }
        .er-accordion-icon.pgt svg { stroke: var(--er-gold); }
        .er-accordion-icon.pgr {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
        }
        .er-accordion-icon.pgr svg { stroke: #8b5cf6; }
        .er-accordion-icon.prof {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.05) 100%);
        }
        .er-accordion-icon.prof svg { stroke: #ec4899; }
        .er-accordion-icon.fellow {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
        }
        .er-accordion-icon.fellow svg { stroke: #f59e0b; }
        .er-accordion-title-group {
            flex: 1;
        }
        .er-accordion-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0 0 4px;
        }
        .er-accordion-subtitle {
            font-size: 0.9rem;
            color: var(--er-text-light);
            margin: 0;
        }
        .er-accordion-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .er-accordion-toggle svg {
            width: 20px;
            height: 20px;
            stroke: var(--er-text-light);
            transition: transform 0.3s ease;
        }
        .er-accordion-item.active .er-accordion-toggle {
            background: var(--er-teal);
        }
        .er-accordion-item.active .er-accordion-toggle svg {
            stroke: #fff;
            transform: rotate(180deg);
        }
        .er-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .er-accordion-item.active .er-accordion-content {
            max-height: 600px;
        }
        .er-accordion-body {
            padding: 0 28px 28px 104px;
        }
        .er-accordion-desc {
            font-size: 0.95rem;
            color: var(--er-text);
            line-height: 1.7;
            margin: 0 0 20px;
        }
        .er-accordion-reqs {
            background: rgba(0,0,0,0.02);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 16px;
        }
        .er-accordion-reqs-title {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--er-text-light);
            margin-bottom: 12px;
        }
        .er-accordion-reqs ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 8px 24px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .er-accordion-reqs li {
            font-size: 0.9rem;
            color: var(--er-text);
            padding-left: 20px;
            position: relative;
        }
        .er-accordion-reqs li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--er-teal);
            border-radius: 50%;
        }
        .er-accordion-note {
            font-size: 0.85rem;
            color: var(--er-text-light);
            font-style: italic;
            margin: 0 0 16px;
        }
        .er-accordion-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--er-teal);
            text-decoration: none;
            transition: gap 0.2s ease;
        }
        .er-accordion-cta:hover {
            gap: 12px;
        }
        .er-accordion-cta svg {
            width: 16px;
            height: 16px;
        }

        /* Section Notes */
        .er-section-notes {
            margin-top: 48px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.03) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 16px;
            padding: 28px 32px;
        }
        .er-section-notes-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--er-deep);
            margin-bottom: 16px;
        }
        .er-section-notes ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .er-section-notes li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--er-text);
            line-height: 1.6;
        }
        .er-section-notes li svg {
            width: 18px;
            height: 18px;
            stroke: var(--er-gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .er-section-1 {
                padding: 60px 24px;
            }
            .er-accordion-header {
                padding: 20px;
                gap: 16px;
            }
            .er-accordion-icon {
                width: 48px;
                height: 48px;
            }
            .er-accordion-body {
                padding: 0 20px 20px 20px;
            }
            .er-accordion-reqs ul {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           SECTION 2: English Language Requirements
           ======================================== */
        .er-section-2 {
            background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
            padding: 100px 60px;
        }
        .er-section-2-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .er-s2-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .er-s2-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
            border: 1px solid rgba(139, 92, 246, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 20px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #8b5cf6;
        }
        .er-s2-badge svg {
            width: 16px;
            height: 16px;
            stroke: #8b5cf6;
        }
        .er-s2-title {
            font-family: var(--font-heading);
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 700;
            color: var(--er-deep);
            margin: 0 0 16px;
        }
        .er-s2-intro {
            font-size: 1.05rem;
            color: var(--er-text-light);
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto 12px;
        }
        .er-s2-note {
            font-size: 0.95rem;
            color: var(--er-teal);
            font-weight: 500;
            margin: 0;
        }

        /* Exemption Blocks */
        .er-exemption-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }
        .er-exemption-block {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid rgba(0,0,0,0.08);
        }
        .er-exemption-block.green {
            border-color: rgba(34, 197, 94, 0.3);
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, #fff 100%);
        }
        .er-exemption-block.neutral {
            border-color: rgba(201, 162, 39, 0.3);
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.04) 0%, #fff 100%);
        }
        .er-exemption-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }
        .er-exemption-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .er-exemption-block.green .er-exemption-icon {
            background: rgba(34, 197, 94, 0.12);
        }
        .er-exemption-block.green .er-exemption-icon svg {
            stroke: #22c55e;
        }
        .er-exemption-block.neutral .er-exemption-icon {
            background: rgba(201, 162, 39, 0.12);
        }
        .er-exemption-block.neutral .er-exemption-icon svg {
            stroke: var(--er-gold);
        }
        .er-exemption-icon svg {
            width: 22px;
            height: 22px;
        }
        .er-exemption-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0;
        }
        .er-exemption-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
        }
        .er-exemption-list li {
            font-size: 0.9rem;
            color: var(--er-text);
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        .er-exemption-list li:last-child {
            border-bottom: none;
        }
        .er-exemption-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: 600;
        }
        .er-exemption-block.green .er-exemption-list li::before {
            color: #22c55e;
        }
        .er-exemption-block.neutral .er-exemption-list li::before {
            color: var(--er-gold);
        }
        .er-exemption-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--er-teal);
            text-decoration: none;
            transition: gap 0.2s ease;
        }
        .er-exemption-link:hover {
            gap: 12px;
            color: var(--er-teal);
        }
        .er-exemption-link svg {
            width: 16px;
            height: 16px;
        }

        /* Exempt Countries Section - Tab Based */
        .er-exempt-countries {
            background: linear-gradient(135deg, rgba(74, 155, 171, 0.06) 0%, rgba(74, 155, 171, 0.02) 100%);
            border: 1px solid rgba(74, 155, 171, 0.15);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 50px;
        }
        .er-exempt-header {
            margin-bottom: 24px;
            text-align: center;
        }
        .er-exempt-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0 0 8px;
        }
        .er-exempt-intro {
            font-size: 0.9rem;
            color: var(--er-text-light);
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Country Tabs */
        .er-country-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 20px;
        }
        .er-country-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            border: 1px solid rgba(74, 155, 171, 0.25);
            background: #fff;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--er-text);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .er-country-tab svg {
            width: 16px;
            height: 16px;
            stroke: var(--er-teal);
            opacity: 0.6;
        }
        .er-country-tab:hover {
            background: rgba(74, 155, 171, 0.08);
            border-color: var(--er-teal);
        }
        .er-country-tab.active {
            background: var(--er-teal);
            color: #fff;
            border-color: var(--er-teal);
        }
        .er-country-tab.active svg {
            stroke: #fff;
            opacity: 1;
        }

        /* Country Panels */
        .er-country-panels {
            margin-bottom: 20px;
        }
        .er-country-panel {
            display: none;
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid rgba(0,0,0,0.06);
        }
        .er-country-panel.active {
            display: block;
        }
        .er-country-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .er-country-pill {
            display: inline-block;
            background: linear-gradient(135deg, rgba(74, 155, 171, 0.12) 0%, rgba(74, 155, 171, 0.05) 100%);
            border: 1px solid rgba(74, 155, 171, 0.2);
            color: var(--er-deep);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .er-panel-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--er-text-light);
            margin: 16px 0 0;
            font-style: italic;
        }

        .er-exempt-note {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: rgba(201, 162, 39, 0.1);
            border-left: 3px solid var(--er-gold);
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            font-size: 0.85rem;
            color: var(--er-text);
            margin: 0;
        }
        .er-exempt-note svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            stroke: var(--er-gold);
        }

        /* Tests Section */
        .er-tests-section {
            margin-bottom: 50px;
        }
        .er-tests-header {
            margin-bottom: 24px;
        }
        .er-tests-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0 0 8px;
        }
        .er-tests-intro {
            font-size: 0.9rem;
            color: var(--er-text-light);
            margin: 0;
        }

        /* Tests Accordion */
        .er-tests-accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .er-test-item {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .er-test-item:hover {
            border-color: rgba(139, 92, 246, 0.3);
        }
        .er-test-item.active {
            border-color: #2d6a7a;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1);
        }
        .er-test-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            cursor: pointer;
        }
        .er-test-name {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0;
        }
        .er-test-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0,0,0,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .er-test-toggle svg {
            width: 18px;
            height: 18px;
            stroke: var(--er-text-light);
            transition: transform 0.3s ease;
        }
        .er-test-item.active .er-test-toggle {
            background:#2d6a7a;
        }
        .er-test-item.active .er-test-toggle svg {
            stroke: #fff;
            transform: rotate(180deg);
        }
        .er-test-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .er-test-item.active .er-test-content {
            max-height: 200px;
        }
        .er-test-body {
            padding: 0 24px 20px;
        }
        .er-test-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .er-test-detail {
            text-align: center;
            padding: 16px;
            background: rgba(0, 0, 0, 0.02);
            border-radius: 10px;
        }
        .er-test-detail-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--er-text-light);
            margin-bottom: 6px;
        }
        .er-test-detail-value {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: #0d1b2a;
            margin: 0;
        }
        .er-tests-link {
            margin-top: 20px;
            text-align: center;
        }

        /* Qualifications Grid */
        .er-quals-section {
            margin-bottom: 50px;
        }
        .er-quals-header {
            margin-bottom: 24px;
        }
        .er-quals-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0 0 8px;
        }
        .er-quals-intro {
            font-size: 0.9rem;
            color: var(--er-text-light);
            margin: 0;
        }
        .er-quals-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .er-qual-item {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .er-qual-item:hover {
            border-color: rgba(74, 155, 171, 0.3);
        }
        .er-qual-item.active {
            border-color: var(--er-teal);
        }
        .er-qual-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
        }
        .er-qual-name {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0;
        }
        .er-qual-badge {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--er-teal);
            background: rgba(74, 155, 171, 0.1);
            padding: 4px 10px;
            border-radius: 6px;
        }
        .er-qual-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .er-qual-item.active .er-qual-content {
            max-height: 120px;
        }
        .er-qual-body {
            padding: 0 20px 16px;
            font-size: 0.85rem;
            color: var(--er-text-light);
            line-height: 1.6;
        }
        .er-quals-link {
            margin-top: 20px;
            text-align: center;
        }

        /* EU Settled / Pre-settled Section */
        .er-eu-section {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(99, 102, 241, 0.02) 100%);
            border: 1px solid rgba(99, 102, 241, 0.15);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 40px;
        }
        .er-eu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .er-eu-header:hover {
            background: rgba(99, 102, 241, 0.05);
        }
        .er-eu-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .er-eu-title svg {
            width: 24px;
            height: 24px;
            stroke: #6366f1;
        }
        .er-eu-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .er-eu-toggle svg {
            width: 18px;
            height: 18px;
            stroke: #6366f1;
            transition: transform 0.3s ease;
        }
        .er-eu-section.active .er-eu-toggle {
            background: #6366f1;
        }
        .er-eu-section.active .er-eu-toggle svg {
            stroke: #fff;
            transform: rotate(180deg);
        }
        .er-eu-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .er-eu-section.active .er-eu-content {
            max-height: 800px;
        }
        .er-eu-list {
            padding: 0 24px 24px;
            margin: 0;
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .er-eu-list li {
            font-size: 0.88rem;
            color: var(--er-text);
            line-height: 1.5;
            padding: 10px 14px;
            background: #fff;
            border-radius: 8px;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .er-eu-list li strong {
            color: var(--er-deep);
            font-weight: 600;
        }

        /* Contact CTA Section */
        .er-contact-cta {
            background: linear-gradient(135deg, var(--er-teal) 0%, #1a4a5c 100%);
            border-radius: 20px;
            padding: 48px;
            margin-top: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }
        .er-contact-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .er-contact-cta-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }
        .er-contact-cta-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .er-contact-cta-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
        }
        .er-contact-cta h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
        }
        .er-contact-cta p {
            font-size: 1rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
            margin: 0;
            max-width: 500px;
        }
        .er-contact-cta-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
        }
        .er-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .er-contact-btn.primary {
            background: #fff;
            color: var(--er-teal);
        }
        .er-contact-btn.primary:hover {
            background: var(--er-gold);
            color: var(--er-deep);
            transform: translateY(-2px);
        }
        .er-contact-btn.secondary {
            background: rgba(255,255,255,0.15);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .er-contact-btn.secondary:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .er-contact-btn svg {
            width: 18px;
            height: 18px;
        }

        /* Resource Cards */
        .er-resource-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .er-resource-card {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 14px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .er-resource-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }
        .er-resource-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        .er-resource-icon svg {
            width: 26px;
            height: 26px;
        }
        .er-resource-icon.english {
            background: linear-gradient(135deg, rgba(74, 155, 171, 0.15) 0%, rgba(74, 155, 171, 0.05) 100%);
        }
        .er-resource-icon.english svg { stroke: var(--er-teal); }
        .er-resource-icon.research {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
        }
        .er-resource-icon.research svg { stroke: #8b5cf6; }
        .er-resource-icon.visa {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
        }
        .er-resource-icon.visa svg { stroke: var(--er-gold); }
        .er-resource-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--er-deep);
            margin: 0 0 8px;
        }
        .er-resource-desc {
            font-size: 0.85rem;
            color: var(--er-text-light);
            line-height: 1.6;
            margin: 0;
        }

        /* Summary */
        .er-s2-summary {
            background: linear-gradient(135deg, var(--er-deep) 0%, var(--er-navy) 100%);
            color: #fff;
            padding: 24px 32px;
            border-radius: 14px;
            text-align: center;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Section 2 Responsive */
        @media (max-width: 768px) {
            .er-section-2 {
                padding: 60px 24px;
            }
            .er-exemption-grid {
                grid-template-columns: 1fr;
            }
            .er-test-details {
                grid-template-columns: 1fr;
            }
            .er-quals-grid {
                grid-template-columns: 1fr;
            }
            .er-resource-cards {
                grid-template-columns: 1fr;
            }
            .er-exempt-countries {
                padding: 24px 16px;
            }
            .er-country-tabs {
                gap: 6px;
            }
            .er-country-tab {
                padding: 8px 12px;
                font-size: 0.75rem;
            }
            .er-country-tab svg {
                width: 14px;
                height: 14px;
            }
            .er-country-panel {
                padding: 16px;
            }
            .er-country-pill {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            .er-eu-list {
                grid-template-columns: 1fr;
                padding: 0 16px 20px;
            }
            .er-eu-title {
                font-size: 0.95rem;
            }
            .er-eu-header {
                padding: 16px;
            }
            .er-contact-cta {
                flex-direction: column;
                padding: 32px 24px;
                text-align: center;
                gap: 24px;
            }
            .er-contact-cta-icon {
                margin: 0 auto 16px;
            }
            .er-contact-cta h3 {
                font-size: 1.3rem;
            }
            .er-contact-cta p {
                font-size: 0.9rem;
            }
            .er-contact-cta-actions {
                width: 100%;
            }
            .er-contact-btn {
                justify-content: center;
            }
        }