/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #09304d;
    --secondary-color: #669aba;
    --accent-color: #c02126;
    --accent-secondary: #761113;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.25rem;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-cta .btn {
    padding: 0.6rem 1.5rem;
    background: var(--secondary-color);
}

.header-cta .btn-book-demo {
    background: #f59e0b;
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: bookDemoFlash 1.1s ease-in-out infinite;
}

.header-cta .btn-book-demo:hover {
    background: #fbbf24;
    color: #0f172a;
}

@keyframes bookDemoFlash {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.85);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 18px 6px rgba(251, 191, 36, 0.95);
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-cta .btn-book-demo {
        animation: none;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color); /* Fallback if image doesn't load */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.35) 0%, rgba(59, 130, 246, 0.35) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.slide-subtitle strong {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1em;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.slide-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.slide-cta {
    animation: fadeIn 0.8s ease-out 1s both;
}

.slide-cta .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slide-cta .btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.slider-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Hero Section (Legacy - keeping for compatibility) */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
}

/* Large Feature Cards */
.feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.feature-large.feature-reverse {
    direction: rtl;
}

.feature-large.feature-reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
}

.feature-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

.feature-icon {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.25);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(30, 64, 175, 0.08);
    line-height: 1;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-content .feature-list {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.feature-content .feature-list li {
    margin-bottom: 0.35rem;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    width: fit-content;
}

.feature-highlight i {
    font-size: 1.2rem;
}

/* Medium Feature Cards */
.feature-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-medium {
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.feature-medium > * {
    position: relative;
    z-index: 1;
}

.feature-medium .feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.feature-medium .feature-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.feature-medium .feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    margin: 0;
    opacity: 1;
    color: rgba(30, 64, 175, 0.18);
    z-index: 0;
    pointer-events: none;
}

.feature-medium h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-medium p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-color);
    color: white;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Featured Schools Section */
.featured-schools {
    padding: 5rem 0;
}

/* Why We're the Best - Comparison Table */
.comparison-section {
    padding: 4rem 0 5rem;
    background: var(--bg-light);
}

.comparison-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table thead th {
    font-weight: 700;
    font-size: 1.05rem;
}

.comparison-benefits-col {
    text-align: left !important;
    background: #1a497f;
    color: #fff;
    font-weight: 600;
    min-width: 220px;
}

.comparison-table thead .comparison-benefits-col {
    border-radius: 0.5rem 0 0 0;
}

.comparison-table tbody .comparison-benefits-col {
    font-weight: 500;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.comparison-table tbody tr:last-child .comparison-benefits-col {
    border-radius: 0 0 0 0.5rem;
    border-bottom: none;
}

.comparison-us-col,
.comparison-other-col {
    min-width: 140px;
    background: var(--bg-white);
    color: var(--text-dark);
}

.comparison-check {
    color: #16a34a;
    font-size: 1.35rem;
}

.comparison-cross {
    color: #dc2626;
    font-size: 1.35rem;
}

@media (max-width: 768px) {
    .comparison-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.75rem;
        font-size: 0.9rem;
    }

    .comparison-benefits-col {
        min-width: 180px;
    }

    .comparison-us-col,
    .comparison-other-col {
        min-width: 90px;
    }
}

/* Fee Structure page — table + modal (aligned with comparison section) */
.fee-structure-section {
    padding: 4rem 0 5rem;
    background: var(--bg-light);
}

.fee-table-wrap {
    overflow-x: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.fee-table th,
.fee-table td {
    padding: 1.35rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    vertical-align: middle;
}

.fee-table th:last-child,
.fee-table td:last-child {
    border-right: none;
}

.fee-table thead th {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.fee-grade-col {
    background: color-mix(in srgb, var(--primary-color) 7%, var(--bg-white));
    color: var(--text-dark);
    font-weight: 600;
    text-align: center !important;
    min-width: 140px;
}

.fee-table thead .fee-grade-col {
    border-radius: 0.5rem 0 0 0;
}

.fee-col-a {
    background: color-mix(in srgb, var(--secondary-color) 22%, var(--bg-white));
    min-width: 160px;
}

.fee-col-b {
    background: color-mix(in srgb, var(--primary-color) 11%, var(--bg-white));
    min-width: 160px;
}

.fee-table thead .fee-col-b {
    border-radius: 0 0.5rem 0 0;
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-table tbody tr:last-child .fee-grade-col {
    border-radius: 0 0 0 0.5rem;
}

.fee-table tbody tr:last-child .fee-col-b {
    border-radius: 0 0 0.5rem 0;
}

.fee-view-btn {
    display: inline-block;
    padding: 0.55rem 1.75rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.fee-view-btn:hover {
    transform: translateY(-1px);
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.fee-footnote {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0 auto;
}

/* Fee modal */
.fee-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: color-mix(in srgb, var(--primary-color) 72%, transparent);
    overflow-y: auto;
}

.fee-modal:not([hidden]) {
    display: flex;
}

.fee-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    max-width: 920px;
    width: 100%;
    padding: 2.25rem 2rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: feeModalIn 0.25s ease;
}

@keyframes feeModalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fee-modal-dialog {
        animation: none;
    }
}

.fee-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.fee-modal-close:hover {
    background: var(--accent-secondary);
}

.fee-modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-right: 2rem;
}

.fee-modal-header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--primary-color);
}

.fee-modal-subtitle {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.fee-modal-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.fee-plan-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.fee-plan-card-head {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 1.1rem 1rem;
    text-align: center;
}

.fee-plan-card-head strong {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.fee-plan-card-head span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.95;
    margin-top: 0.25rem;
}

.fee-plan-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    background: #fff;
    padding: 0.5rem 0;
}

.fee-plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.fee-plan-row:last-child {
    border-bottom: none;
}

.fee-plan-row strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.fee-plan-card-body--center {
    text-align: center;
    padding: 2rem 1.25rem;
    align-items: center;
    justify-content: center;
}

.fee-save-label {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

.fee-save-amount {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 0.35rem;
}

.fee-plan-card-foot {
    flex-shrink: 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 1rem 1rem 1.15rem;
}

.fee-plan-foot-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.95;
}

.fee-plan-foot-total {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0.2rem 0;
}

.fee-plan-foot-note {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.fee-modal-actions {
    text-align: center;
}

.fee-enroll-btn {
    display: inline-block;
    padding: 0.65rem 2.5rem;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.fee-enroll-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .fee-modal-plans {
        grid-template-columns: 1fr;
    }

    .fee-table th,
    .fee-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .fee-view-btn {
        padding: 0.45rem 1.1rem;
        font-size: 0.85rem;
    }

    .fee-modal-dialog {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .fee-plan-foot-total {
        font-size: 1.65rem;
    }
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schools-grid--single {
    grid-template-columns: 1fr;
}

.school-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.school-image {
    background: #ffffff;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-bottom: 3px solid var(--accent-color);
}

.school-logo-img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    display: block;
}

.school-content {
    padding: 2rem;
}

.school-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.school-location {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.school-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.school-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.school-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.school-rating span {
    color: var(--text-light);
    margin-left: 0.5rem;
}

.school-card-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
}

/* Lead Capture Section */
.lead-capture {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.lead-capture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lead-capture-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead-capture-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.lead-capture-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.lead-capture-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-actions {
    margin-top: 2rem;
    text-align: center;
}

/* Testimonials page: video grid */
.testimonials-videos {
    padding: 4rem 0;
    background: var(--bg-white);
}

.testimonial-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-video-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.testimonial-video-card video {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    display: block;
    background: #000;
}

.testimonial-video-meta {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-video-meta strong {
    color: var(--text-dark);
}

.testimonial-video-meta span {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonial-video-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials page: explore section (A + B + D-lite + E) */
.testimonials-explore {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-explore-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.testimonial-tabs,
.testimonial-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonial-tab,
.testimonial-filter,
.gcc-chip {
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.testimonial-tab:hover,
.testimonial-filter:hover,
.gcc-chip:hover {
    border-color: color-mix(in srgb, var(--primary-color) 35%, var(--border-color));
    transform: translateY(-1px);
}

.testimonial-tab.is-active,
.testimonial-filter.is-active,
.gcc-chip.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.gcc-map-lite {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1rem;
    margin-top: 1.25rem;
}

.gcc-map-lite-card,
.gcc-map-lite-note {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.gcc-map-lite-title {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.85rem;
}

.gcc-map-lite-title strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.gcc-map-lite-title span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.gcc-map-lite-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gcc-map-lite-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.gcc-map-lite-badge {
    flex: 0 0 auto;
    background: color-mix(in srgb, var(--accent-color) 18%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent-color) 35%, var(--border-color));
    color: var(--accent-color);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.gcc-map-lite-note p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.results-wall {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.result-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.result-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.result-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.result-card p {
    margin: 0 0 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.result-tag {
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary-color) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--primary-color) 18%, var(--border-color));
    color: var(--primary-color);
}

.result-quote {
    margin-top: 0.25rem;
    padding-left: 0.85rem;
    border-left: 3px solid color-mix(in srgb, var(--primary-color) 45%, var(--border-color));
    color: var(--text-dark);
    font-weight: 700;
}

.result-by {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.journey-timeline {
    margin-top: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.25rem;
}

.journey-title {
    margin: 0 0 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.journey-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 0.85rem;
    border: 1px solid color-mix(in srgb, var(--primary-color) 14%, var(--border-color));
    background: color-mix(in srgb, var(--primary-color) 6%, #fff);
}

.journey-dot {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.journey-body strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.journey-body span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.testimonials-empty {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .results-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gcc-map-lite {
        grid-template-columns: 1fr;
    }

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

    .journey-steps {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .header-cta {
        gap: 0.4rem;
    }

    .header-cta .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.82rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--text-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-logo {
        height: 30px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .why-choose {
        padding: 3rem 0;
    }

    .why-choose-header {
        margin-bottom: 2rem;
    }

    .feature-large {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .feature-large.feature-reverse {
        direction: ltr;
    }

    .feature-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-medium {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .feature-number {
        font-size: 4rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .lead-capture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid,
    .schools-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

/* Calendly embed (schedule page) */
.calendly-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.calendly-intro {
    text-align: center;
    max-width: 640px;
    margin: -0.5rem auto 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.calendly-inline-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 700px;
}

.calendly-inline-wrap .calendly-inline-widget {
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.contact-benefits i {
    color: var(--success-color);
}

.contact-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.phone-input-wrap {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.phone-code-dropdown {
    position: relative;
    width: 130px;
    min-width: 110px;
}

.phone-code-select-native {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.phone-code-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.phone-code-trigger:hover {
    border-color: var(--primary-color);
}

.phone-code-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.phone-code-trigger .phone-code-value {
    flex: 1;
    min-width: 0;
}

.phone-code-arrow {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: transform 0.2s;
}

.phone-code-dropdown.is-open .phone-code-arrow {
    transform: rotate(180deg);
}

.phone-code-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 2px;
    max-height: 260px;
    overflow-y: auto;
    background: var(--bg-white);
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
}

.phone-code-list[hidden] {
    display: none !important;
}

.phone-code-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.phone-code-option:hover {
    background: var(--bg-light);
}

.phone-code-option img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.phone-code-option .fa-globe {
    width: 24px;
    text-align: center;
    color: var(--text-light);
}

.phone-code-select {
    width: 140px;
    min-width: 100px;
    padding: 0.65rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
}

.phone-input-wrap input[type="tel"] {
    flex: 1;
    min-width: 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

/* Programs Page Styles */
.programs-section {
    padding: 4rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.program-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.program-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
}

.program-features i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 720px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
    background: rgba(9, 48, 77, 0.04);
}

.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question span i:first-child {
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1.25rem 1.5rem;
    padding-left: calc(1.5rem + 1.25rem + 0.75rem);
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid #eee;
}

@media (max-width: 576px) {
    .faq-answer p {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
        max-height: 600px;
    }

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

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-features {
        flex-direction: column;
        gap: 1rem;
    }

    .slide-feature {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
    }

    .slide-content {
        padding: 1rem;
    }

    .why-choose {
        padding: 3rem 0;
    }

    .why-choose-header {
        margin-bottom: 2rem;
    }

    .feature-large {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .feature-large.feature-reverse {
        direction: ltr;
    }

    .feature-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-medium {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .feature-number {
        font-size: 4rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .why-choose {
        padding: 2rem 0;
    }

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

    .feature-large {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .feature-medium {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .feature-number {
        font-size: 3rem;
    }

    .feature-content h3 {
        font-size: 1.25rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .hero-slider {
        min-height: 450px;
        max-height: 550px;
    }

    .slide-title {
        font-size: 1.75rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .why-choose {
        padding: 2rem 0;
    }

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

    .feature-large {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .feature-medium {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .feature-number {
        font-size: 3rem;
    }

    .feature-content h3 {
        font-size: 1.25rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

/* About Page Styles */
.about-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 840px;
    margin: 0 auto;
}

.about-block {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: box-shadow 0.3s, transform 0.2s;
}

.about-block:hover {
    box-shadow: var(--shadow-lg);
}

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

.about-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.about-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.about-block p {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-block p:last-of-type {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.about-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-list i {
    color: var(--success-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-cta {
    display: inline-block;
    margin-top: 1.5rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-dark);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* About page header */
.page-header-about {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3d5c 50%, var(--secondary-color) 100%);
    color: #fff;
    padding: 4rem 2rem 4.5rem;
    text-align: center;
}

.page-header-about .container {
    max-width: 720px;
}

.page-header-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.page-header-about h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.page-header-desc {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* About stats enhancement */
.stats-section-about .stat-item {
    padding: 2rem 1.5rem;
    position: relative;
}

.stats-section-about .stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stats-section-about .stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.stats-section-about .stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .page-header-about {
        padding: 3rem 1.5rem 3.5rem;
    }

    .page-header-about h1 {
        font-size: 2rem;
    }

    .page-header-desc {
        font-size: 1.05rem;
    }

    .about-block {
        padding: 1.75rem;
    }

    .about-block h2 {
        font-size: 1.5rem;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Getting Started Steps Section */
.steps-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.steps-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    align-items: start;
}

.step-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: left;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
    border-color: var(--secondary-color);
}

.step-card:hover .step-number {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.step-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.step-card > * {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:nth-child(1) {
    animation-delay: 0s;
    grid-column: 1;
    margin-top: 0;
}

.step-card:nth-child(2) {
    animation-delay: 0.3s;
    grid-column: 2;
    margin-top: 100px;
    transform: translateY(130px);
    animation: slideInUpZigzag 0.6s ease-out 0.3s forwards;
}

.step-card:nth-child(3) {
    animation-delay: 0.6s;
    grid-column: 3;
    margin-top: 200px;
    transform: translateY(230px);
    animation: slideInUpZigzag2 0.6s ease-out 0.6s forwards;
}

@keyframes slideInUpZigzag {
    from {
        opacity: 0;
        transform: translateY(130px);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

@keyframes slideInUpZigzag2 {
    from {
        opacity: 0;
        transform: translateY(230px);
    }
    to {
        opacity: 1;
        transform: translateY(200px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.step-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.step-card h3 {
    transition: all 0.3s ease;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

.step-card .btn {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .steps-section {
        padding: 3rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
        grid-column: 1 !important;
        margin-top: 0 !important;
        transform: translateY(30px) !important;
    }

    .step-card:nth-child(2) {
        transform: translateY(30px) !important;
    }

    .steps-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.angled-banner {
    position: relative;
    padding: 90px 20px;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

/* Top angled strip */
.angled-banner::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #CBD5E1;
    transform: skewY(-3deg);
}

/* Bottom angled strip */
.angled-banner::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #CBD5E1;
    transform: skewY(-3deg);
}

.angled-banner h2 {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    z-index: 2;
    letter-spacing: 0.5px;
}

.angled-banner p {
    position: relative;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.6;
    z-index: 2;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .angled-banner h2 {
        font-size: 34px;
    }
    .angled-banner p {
        font-size: 16px;
    }
}

/* Cognia — homepage promo strip (links to cognia.html) */
.cognia-promo-strip {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 45%, #ffffff 100%);
    background-color: #eef6fc;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    border-top: 1px solid rgba(30, 64, 175, 0.12);
    border-bottom: 1px solid rgba(30, 64, 175, 0.12);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.cognia-promo-strip:hover {
    background-color: #e0f0fe;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.cognia-promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.75rem 1rem;
    max-width: 1100px;
}

.cognia-promo-text {
    flex: 1;
    min-width: 0;
}

.cognia-promo-heading {
    margin: 0 0 0.5rem;
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
    font-weight: 800;
    line-height: 1.3;
}

.cognia-promo-brand {
    color: #2563eb;
}

.cognia-promo-rest {
    color: #0f172a;
}

.cognia-promo-text p {
    margin: 0 0 0.65rem;
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 52rem;
}

.cognia-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1d4ed8;
}

.cognia-promo-strip:hover .cognia-promo-cta {
    text-decoration: underline;
}

.cognia-promo-seal {
    flex-shrink: 0;
}

.cognia-seal-ring--sm {
    transform: scale(0.82);
}

@media (max-width: 640px) {
    .cognia-promo-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .cognia-promo-seal {
        order: -1;
    }

    .cognia-seal-ring--sm {
        transform: scale(0.72);
    }
}

/* Cognia seal (page + promo) */
.cognia-seal-ring {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e2e8f0 0%, #f8fafc 40%, #cbd5e1 100%);
    border: 3px solid #94a3b8;
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.9),
        0 8px 24px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
}

.cognia-seal-top {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #475569;
    line-height: 1.2;
    max-width: 90%;
}

.cognia-seal-mark {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
    margin: 0.35rem 0 0.25rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.cognia-seal-dot {
    color: #dc2626;
}

.cognia-seal-bottom {
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #64748b;
    line-height: 1.25;
    max-width: 95%;
}

/* Cognia full page */
.cognia-page-hero {
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 50%, #ffffff 100%);
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    padding: 3rem 0 3.5rem;
}

.cognia-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cognia-hero-text {
    flex: 1;
    min-width: 280px;
    max-width: 640px;
}

.cognia-hero-text h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
}

.cognia-hero-brand {
    color: #2563eb;
}

.cognia-hero-rest {
    color: #0f172a;
}

.cognia-hero-lead {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.cognia-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cognia-page-hero .cognia-seal {
    flex-shrink: 0;
}

.btn-outline-cognia {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.35rem;
    border-radius: 0.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-cognia:hover {
    background: var(--primary-color);
    color: #fff;
}

.cognia-page-content {
    padding: 3rem 0 4rem;
    background: var(--bg-white);
}

.cognia-narrow {
    max-width: 760px;
}

.cognia-block {
    margin-bottom: 2.5rem;
}

.cognia-block h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
    font-weight: 700;
}

.cognia-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.cognia-block--highlight {
    background: var(--bg-light);
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.cognia-block--highlight h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
}

.cognia-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-light);
    line-height: 1.85;
}

.cognia-list li {
    margin-bottom: 0.65rem;
}

.cognia-source a {
    color: var(--primary-color);
    font-weight: 600;
}

.cognia-cta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .cognia-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .cognia-hero-actions {
        justify-content: center;
    }

    .cognia-cta-bar {
        justify-content: center;
    }
}

/* Obridge Academy modal (ICES USA card on index) */
.school-obridge-btn {
    margin-top: 1.25rem;
    width: 100%;
    max-width: 340px;
}

.obridge-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.55);
    overflow-y: auto;
}

.obridge-modal:not([hidden]) {
    display: flex;
}

.obridge-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    max-width: 480px;
    width: 100%;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: feeModalIn 0.25s ease;
}

.obridge-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #dc2626;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.obridge-modal-close:hover {
    background: #b91c1c;
}

.obridge-modal-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    padding-right: 2.5rem;
}

.obridge-modal-lead {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.obridge-modal-logo-wrap {
    text-align: center;
    margin: 1rem 0 1.25rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
}

.obridge-modal-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.obridge-modal-text {
    margin: 0 0 1.25rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-light);
}

.obridge-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.obridge-modal-actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
}