/* ========================================
   Reading Test Page Styles - Polished
   ======================================== */

:root {
    --primary-blue: #0086B3;
    --primary-blue-dark: #006d94;
    --primary-blue-light: #00a8e0;
    --tan-color: #D4A574;
    --tan-light: #e6c9a8;
    --white: #ffffff;
    --text-dark: #333;
    --text-muted: #666;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* Custom Animation for Arrows */
.pre-fade.fade-down-slow {
    transform: translateY(-10px);
    transition: opacity 0.5s ease-out, transform 1.5s ease-out;
}

.pre-fade.fade-down-slow.fade-in {
    transform: translateY(0);
}

/* ----------------------------------------
   General Section Styles
   ---------------------------------------- */
.section-title {
    font-size: clamp(32px, 5vw, 48px) !important;
    font-weight: 700 !important;
    text-align: center;
}

/* First section title - specific override */
.bg-white>.container>.section-title {
    color: #2c3e50 !important;
    margin-bottom: 70px;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.section-title.white-text {
    color: var(--white);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff !important;
    margin-top: 40px;
    margin-bottom: 0;
    opacity: 0.95;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-arrow {
    width: 80px;
    height: auto;
    animation: arrow-bounce 2s ease-in-out infinite;
}

.hero-arrow:first-of-type {
    animation-delay: 0s;
}

.hero-arrow:last-of-type {
    animation-delay: 0.5s;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.hero-main-image {
    width: 250px;
    height: auto;
}

/* ----------------------------------------
   Tan Boxes & Sections
   ---------------------------------------- */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title.white-text {
    color: var(--white);
}

.section-padding {
    padding: 80px 20px;
}

.bg-white {
    background-color: var(--white);
}

.bg-blue {
    background-color: var(--primary-blue);
}

.container-narrow {
    max-width: 700px;
}

.container-medium {
    max-width: 900px;
}

.tan-box {
    background: linear-gradient(145deg, var(--tan-light) 0%, var(--tan-color) 100%);
    padding: 50px 40px;
    border-radius: 50px;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tan-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.tan-box-title {
    font-size: 29px;
    font-weight: normal;
    margin-bottom: 30px;
}

.tan-box-text {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
}

.book-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.book-row img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.book-row img:hover {
    transform: scale(1.1) rotate(3deg);
}

.or-divider {
    font-size: 48px;
    font-weight: 800;
    margin: 30px 0;
}

.arrow-down-divider {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.arrow-down-divider+.mt-large,
.arrow-down-divider+.mt-medium,
.arrow-down-divider+.difficulty-flow {
    margin-top: 10px !important;
}

.black-arrow {
    width: 60px;
    filter: brightness(0);
    display: block;
    margin: 0 auto;
}

.tan-box-desc {
    font-size: 22px;
    line-height: 1.4;
}

.exam-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.exam-type {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.black-arrow-small {
    width: 40px;
    filter: brightness(0);
    margin-bottom: 15px;
}

.large-book-icon {
    height: 140px;
    width: auto;
}

.exam-label {
    font-size: 19px;
    font-weight: 800;
    margin-top: 15px;
}

/* ----------------------------------------
   Our Test Section
   ---------------------------------------- */
.our-test-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.our-test-content {
    flex: 1;
}

.large-text {
    font-size: 24px;
    line-height: 1.5;
}

.monster-icon {
    width: 200px;
    height: auto;
}

.text-left {
    text-align: left;
}

/* ----------------------------------------
   Instruction Grid
   ---------------------------------------- */
.instruction-grid {
    max-width: 1000px;
    margin: 40px auto 0;
}

.instruction-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 30px;
}

.instruction-row.reverse {
    flex-direction: row-reverse;
    background: var(--light-blue);
}

.step-num {
    background: var(--primary-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-icon img {
    width: 80px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 19px;
    line-height: 1.4;
}

.step-visual img {
    width: 120px;
}

/* ----------------------------------------
   Time Notice Box
   ---------------------------------------- */
.time-notice-box {
    background: linear-gradient(145deg, var(--tan-light) 0%, var(--tan-color) 100%);
    padding: 50px 40px;
    border-radius: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.time-notice-box p {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.time-notice-box strong {
    font-weight: 800;
}

.time-notice-section {
    padding-top: 0 !important;
    padding-bottom: 100px !important;
}

/* ----------------------------------------
   Get Ready Section
   ---------------------------------------- */
.get-ready-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%);
    padding: 100px 20px 40px;
    position: relative;
}

.get-ready-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.ready-banner {
    background: linear-gradient(180deg, #e57373 0%, #f5f5f5 100%);
    padding: 50px;
    border-radius: 40px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ready-banner .highlight {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #b71c1c;
    background: linear-gradient(to bottom, #ffffff, #fff5f5);
    display: inline-block;
    padding: 35px 50px;
    border-radius: 20px;
    border: none;
    line-height: 1.5;
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.15);
    letter-spacing: 0.5px;
    animation: pulse-red 3.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

.ready-banner .highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ef5350, #b71c1c);
}

.ready-banner .highlight::before {
    content: '⚠️';
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 15px 45px rgba(183, 28, 28, 0.1);
        transform: translateY(0) scale(1);
    }

    50% {
        box-shadow: 0 30px 70px rgba(183, 28, 28, 0.3);
        transform: translateY(-8px) scale(1.02);
    }
}

.ready-banner p:not(.highlight) {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: -15px;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.token-offer {
    background: linear-gradient(135deg, #ffdd00 0%, #ffaa00 100%);
    display: inline-block;
    padding: 18px 50px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-offer:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 170, 0, 0.5);
}

.cta-character {
    display: block;
    width: 280px;
    margin: 0 auto -30px;
    position: relative;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Large CTA Button */
.btn-primary.large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
    background-size: 200% 100%;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
    opacity: 1;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
    animation: shimmer-green 6s ease-in-out infinite;
}

@keyframes shimmer-green {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 200% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-primary.large:hover {
    animation: none;
    background: linear-gradient(135deg, #22c55e 0%, #08ba49 100%) !important;
    background-size: 100% 100% !important;
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.5);
}

.btn-primary.large:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.4);
    opacity: 0.9;
}

/* ----------------------------------------
   Info Note & Difficulty Cards
   ---------------------------------------- */
.info-note p {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

.mt-medium {
    margin-top: 40px;
}

.mt-large {
    margin-top: 60px;
}

.mt-small {
    margin-top: 15px;
}

.comparison-note {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-intro {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.comparison-note .exam-types-grid {
    margin-bottom: 30px;
}

.comparison-note p {
    font-size: 21px;
    line-height: 1.6;
}

.difficulty-flow {
    width: 700px;
    max-width: calc(100vw - 40px);
    margin: 0 0 0px 50%;
    transform: translateX(-50%);
}

.difficulty-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    border-radius: 50px;
    margin: 10px 0;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difficulty-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-strong);
}

.difficulty-card.blue {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.difficulty-card.tan {
    background: linear-gradient(135deg, var(--tan-light) 0%, var(--tan-color) 100%);
    color: var(--text-dark);
}

.difficulty-card p {
    font-size: 24px;
    font-weight: 400;
    flex: 1;
    text-align: center;
}

.difficulty-icon {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.difficulty-card:hover .difficulty-icon {
    transform: scale(1.1);
}

.difficulty-icon.happy {
    filter: none;
}

.difficulty-icon.neutral {
    filter: hue-rotate(30deg);
}

.difficulty-icon.angry {
    filter: none;
}

.comparison-note p {
    font-size: 21px;
    line-height: 1.6;
}

/* ----------------------------------------
   OUR EXAM Section Styles
   ---------------------------------------- */
.exam-mixture-box {
    max-width: 700px;
    margin: 0 auto;
}

.mixture-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mixture-icons img {
    height: 80px;
    width: auto;
}

.plus-sign {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
}

.plus-sign.white-text {
    color: var(--white);
}

.exam-description {
    font-size: 21px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-placeholder {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.screenshot-content {
    text-align: left;
    color: var(--text-dark);
}

.screenshot-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.screenshot-content .small-text {
    font-size: 15px;
    color: var(--text-muted);
}

.white-box {
    background-color: var(--white);
    padding: 30px 40px;
    border-radius: 30px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.exam-warning {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.exam-note-wrapper {
    position: relative;
}

.note-text {
    font-size: 24px;
    line-height: 1.5;
}

.note-text em {
    font-style: italic;
    color: var(--primary-blue);
}

.highlight-yellow {
    background: linear-gradient(180deg, transparent 40%, #ffdd00 40%);
    color: var(--primary-blue);
    padding: 0 5px;
    font-style: normal;
}

.green-man-image {
    position: relative;
    margin-top: -66px;
    z-index: 10;
}

.green-man-icon {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.exam-screenshot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.exam-screenshot::before,
.exam-screenshot::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    max-width: 100px;
}

.exam-interface-img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.stamp-icon {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* ----------------------------------------
   Section Question Grid (What to Do)
   ---------------------------------------- */
.subsection-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.subsection-title.white-text {
    color: var(--white);
}

.section-question-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.section-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #f5f5f5;
    border-radius: 15px;
    transition: transform 0.2s ease, background 0.2s ease;
    width: 100%;
}

.section-item:hover {
    transform: translateX(5px);
    background: #eee;
}

.section-icon-img {
    width: 40px;
    height: auto;
}

.section-item p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ----------------------------------------
   Instructions Section - "You should:" Box
   ---------------------------------------- */
.instructions-section {
    background: var(--primary-blue);
    padding: 60px 20px;
}

.you-should-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-blue);
    border-radius: 30px;
    padding: 40px 50px;
}

.you-should-title {
    color: var(--white);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.you-should-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.you-should-item {
    flex: 1;
    text-align: center;
}

.you-should-image {
    display: block;
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
}

.you-should-item p {
    color: var(--white);
    font-size: 19px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.you-should-item .underline {
    text-decoration: underline;
    font-weight: 700;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 768px) {
    .hero-visual {
        flex-direction: column;
        gap: 20px;
    }

    .hero-arrow {
        width: 50px;
    }

    .exam-types-grid {
        grid-template-columns: 1fr;
    }

    .our-test-flex {
        flex-direction: column;
        text-align: center;
    }

    .text-left {
        text-align: center;
    }

    .instruction-row,
    .instruction-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .step-visual img {
        margin-top: 20px;
    }

    .difficulty-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 30px;
    }

    .difficulty-icon {
        width: 90px;
    }

    .you-should-grid {
        flex-direction: column;
        gap: 30px;
    }

    .should-item {
        max-width: 100%;
    }

    .mixture-icons img {
        height: 60px;
    }

    .plus-sign {
        font-size: 32px;
    }

    .you-should-items {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .you-should-box {
        padding: 30px 20px;
    }

    .you-should-image {
        width: 180px;
    }

    .ready-banner .highlight {
        font-size: 21px;
    }

    /* Preserve Row Layout for Comparison Icons */
    .exam-types-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
}

/* ----------------------------------------
   Ready Instructions Card
   ---------------------------------------- */
.ready-instructions-wrapper {
    background: linear-gradient(135deg, #00eba1 0%, #00d65b 100%);
    padding: 30px;
    border-radius: 60px;
    max-width: 700px;
    margin: 30px auto 50px;
    box-shadow: 0 10px 30px rgba(0, 214, 91, 0.3);
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ready-instructions-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 214, 91, 0.4);
}

.ready-instructions-wrapper:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 214, 91, 0.3);
}

.ready-instructions-content {
    background: var(--white);
    border-radius: 40px;
    padding: 40px;
}

.ready-instructions-content p {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0;
}

.ready-instructions-content .final-wish {
    font-weight: 900;
    font-size: 29px;
    margin-top: 20px;
    color: #2c3e50;
}

.ready-instructions-content .underline {
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.ready-instructions-content .underline::after {
    background-color: var(--primary-blue);
    opacity: 1;
}

.ready-instructions-content em {
    font-style: italic;
    font-family: serif;
    /* Optional for emphatic italics */
}

.disclaimer-text {
    font-size: 15px;
    color: #f9f9f9;
    margin-top: 45px;
    margin-bottom: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.8;
    text-align: center;
}

.main-footer {
    padding-top: 30px !important;
}

/* Mobile Icon Fix & Warning Box Overflow Fix */
@media (max-width: 450px) {
    .book-row img {
        width: 30%;
        /* Fit 3 in a row with gap */
        height: auto;
    }

    .ready-banner {
        padding: 20px !important;
    }

    .ready-banner .highlight {
        padding: 20px !important;
        font-size: clamp(14px, 4vw, 18px) !important;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 5px !important;
        /* Reduced from 30px */
    }

    .ready-banner p:not(.highlight) {
        font-size: clamp(15px, 4.5vw, 19px) !important;
        margin-top: 5px !important;
        margin-bottom: 4px !important;
        /* Reduced from 10px */
    }

    .ready-instructions-wrapper {
        padding: 15px !important;
        /* Reduced green border size */
    }

    .ready-instructions-content {
        padding: 20px !important;
        /* Reduced inner text padding */
    }

    .ready-instructions-content p {
        font-size: clamp(16px, 5vw, 20px) !important;
        line-height: 1.4 !important;
    }

    .btn-primary.large {
        display: inline-flex !important;
        width: auto !important;
        max-width: 90%;
        margin: 0 0 20px 0 !important;
        padding: 15px 40px !important;
        font-size: clamp(18px, 5vw, 22px) !important;
        box-sizing: border-box;
    }

    .cta-area {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .disclaimer-text {
        font-size: clamp(11px, 3.5vw, 14px) !important;
        line-height: 1.4;
        opacity: 0.8;
        text-align: center;
    }

    /* Info Card Title Scaling */
    .tan-box-title {
        font-size: clamp(20px, 5vw, 29px) !important;
        font-weight: normal !important;
    }

    /* Info Note Text Scaling */
    .info-note p {
        font-size: clamp(16px, 4vw, 26px) !important;
        font-weight: normal !important;
    }

    /* Exam Mixture Box Refinements */
    .exam-mixture-box {
        padding: 20px 25px !important;
    }

    .exam-mixture-box .large-text {
        font-size: clamp(16px, 4.5vw, 24px) !important;
    }

    /* Exam Description Text Scaling */
    .exam-description {
        font-size: clamp(16px, 4vw, 21px) !important;
        padding: 0 10px !important;
    }

    /* Comparison Box Refinements */
    .comparison-note {
        padding: 20px 25px !important;
    }

    .comparison-intro {
        font-size: clamp(18px, 4.5vw, 24px) !important;
    }

    .exam-label {
        font-size: clamp(14px, 4vw, 19px) !important;
    }

    .comparison-note p {
        font-size: clamp(16px, 4vw, 21px) !important;
    }

    /* Resize Comparison Box Icons */
    .large-book-icon {
        height: 90px !important;
        width: auto !important;
    }

    .black-arrow-small {
        width: 30px !important;
    }

    /* Preserve Row Layout for Comparison Icons */
    .exam-types-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
}