/* ===== CSS Variables ===== */
:root {
    --primary: #1a56db;
    --primary-dark: #1440a8;
    --primary-light: #e8eefb;
    --accent: #f59e0b;
    --accent-light: #fef3c7;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.nav-logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.cta-link {
    background: var(--primary);
    color: white;
    margin-left: 8px;
}

.nav-link.cta-link:hover {
    background: var(--primary-dark);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Language Toggle ===== */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: white;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    margin-left: 8px;
}

.lang-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-text {
    letter-spacing: 0.5px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fefce8 50%, #f0fdf4 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    right: -100px;
    filter: blur(80px);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    filter: blur(60px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #10b981;
    top: 50%;
    left: 50%;
    filter: blur(80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-greeting {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--primary);
    color: white;
}

.badge-secondary {
    background: var(--accent);
    color: #78350f;
}

.hero-scores {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.score-item {
    text-align: center;
}

.score-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.score-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-tagline {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    transform: rotate(3deg);
    transition: var(--transition);
    width: 100%;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-header {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.card-score {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.card-detail {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.card-stars {
    color: var(--accent);
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-lighter);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-lighter);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(6px); }
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== About Grid ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Timeline ===== */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.timeline-content {
    background: white;
    padding: 28px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
}

.timeline-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-place {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.timeline-details {
    list-style: none;
}

.timeline-details li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
}

.timeline-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ===== Career Grid ===== */
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.career-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.career-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.career-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.career-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    padding-right: 60px;
}

.career-scope {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.career-card ul {
    list-style: none;
}

.career-card li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.career-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ===== Teaching Section ===== */
.teaching-block {
    margin-bottom: 56px;
}

.teaching-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

/* Test Scores */
.test-scores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ielts-card {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.ielts-card .test-name {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    font-weight: 600;
}

.test-score-big {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 8px 0;
}

.test-note {
    font-size: 0.8125rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.test-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.breakdown-item {
    background: rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8125rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.breakdown-item span {
    opacity: 0.8;
}

.breakdown-item.highlight {
    background: rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.other-tests {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.test-card-small {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.test-card-small:hover {
    box-shadow: var(--shadow);
}

.test-card-small .test-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.test-score-small {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.test-score-small span {
    font-size: 0.875rem;
    color: var(--text-lighter);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Knowledge Grid */
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.knowledge-item {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

.knowledge-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.knowledge-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* Course Card */
.course-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.course-type {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.course-format {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.course-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== Results Section ===== */

/* Band Rows */
.band-row {
    margin-bottom: 32px;
}

.band-row:last-of-type {
    margin-bottom: 60px;
}

.band-row-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Student Bubbles */

.student-bubble {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    width: 160px;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.student-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.student-bubble:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* Band color variants */
.student-bubble.band-8 {
    border-color: #f59e0b;
}

.student-bubble.band-8::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.student-bubble.band-8:hover {
    border-color: #d97706;
}

.student-bubble.band-7 {
    border-color: var(--primary);
}

.student-bubble.band-7::before {
    background: linear-gradient(90deg, var(--primary), #3b82f6);
}

.student-bubble.band-7:hover {
    border-color: var(--primary-dark);
}

.student-bubble.band-6 {
    border-color: #10b981;
}

.student-bubble.band-6::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.student-bubble.band-6:hover {
    border-color: #059669;
}

.bubble-score {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.band-8 .bubble-score {
    color: #d97706;
}

.band-7 .bubble-score {
    color: var(--primary);
}

.band-6 .bubble-score {
    color: #059669;
}

.bubble-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.bubble-school {
    font-size: 0.6875rem;
    color: var(--text-lighter);
    line-height: 1.4;
    min-height: 16px;
}

/* Summary stats */
.results-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 560px;
    margin: 0 auto;
}

.summary-item {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.summary-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.summary-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    display: block;
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-content p {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 300px;
        transform: none;
    }

    .hero-name {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
        gap: 4px;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link.cta-link {
        margin-left: 0;
        text-align: center;
    }

    .hero-name {
        font-size: 3rem;
    }

    .hero-scores {
        flex-wrap: wrap;
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid,
    .career-grid,
    .test-scores-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .band-row-bubbles {
        gap: 14px;
    }

    .student-bubble {
        width: 140px;
        padding: 20px 16px;
    }

    .lang-toggle {
        margin-left: 0;
        align-self: flex-start;
    }

    .results-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-stats {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.5rem;
    }

    .card-score {
        font-size: 4rem;
    }

    .test-score-big {
        font-size: 3.5rem;
    }

    .results-summary {
        grid-template-columns: 1fr 1fr;
    }
}
