:root {
    --bg-dark: #070d19;
    --bg-card: #0f172a;
    --border-color: rgba(0, 242, 254, 0.35);
    --accent-cyan: #00F2FE;
    --accent-blue: #4FACFE;
    --accent-emerald: #00F5A0;
    --accent-glow: rgba(0, 242, 254, 0.35);
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #94A3B8;
    --danger: #FF5252;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

.text-center { text-align: center; }
.text-teal { color: var(--accent-cyan) !important; }
.text-emerald { color: var(--accent-emerald) !important; }
.text-glow {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}
.text-bright {
    color: #FFFFFF !important;
}
.text-bright-sub {
    color: #CBD5E1 !important;
    font-weight: 500;
}

/* Header Navigation */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #070d19;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.official-logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--accent-cyan);
    padding-left: 12px;
}

.logo-title-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.logo-subtitle-text {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.direct-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    transition: var(--transition-fast);
}

.direct-site-btn:hover {
    color: #070d19;
    background: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

/* MAIN HERO WRAPPER - BACKGROUND IMAGE RESTRICTED ONLY TO HERO */
.main-wrapper {
    position: relative;
    z-index: 1;
    padding: 3rem 5%;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 242, 254, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, rgba(7, 13, 25, 0.82) 0%, rgba(7, 13, 25, 0.95) 100%),
        url('assets/hero_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column Info */
.urgency-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-size: 0.825rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(0.95); opacity: 1; }
}

.main-heading {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.05rem;
    color: #E2E8F0;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Course Specs Bar */
.course-specs-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
}

.spec-item {
    background: #0f172a;
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-icon {
    font-size: 1.3rem;
    color: var(--accent-cyan);
}

.spec-item strong {
    display: block;
    font-size: 0.85rem;
    color: #FFFFFF;
}

.spec-item span {
    font-size: 0.75rem;
    color: #94A3B8;
}

/* Coupon Box */
.coupon-card {
    background: #0f172a;
    border: 1.5px dashed var(--accent-cyan);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-cyan);
}

.coupon-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94A3B8;
    display: block;
    margin-bottom: 6px;
}

.coupon-code-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.code-display {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-emerald);
    background: rgba(0, 245, 160, 0.15);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 245, 160, 0.4);
}

.copy-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #070d19;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.coupon-hint {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* Direct Site Banner Option */
.direct-site-banner {
    background: #0f172a;
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.banner-text strong {
    display: block;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.banner-text span {
    font-size: 0.8rem;
    color: #CBD5E1;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.825rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.banner-btn:hover {
    background: var(--accent-cyan);
    color: #070d19;
}

/* Benefits List */
.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-list strong {
    display: block;
    color: #FFFFFF;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.benefit-list span {
    font-size: 0.875rem;
    color: #CBD5E1;
}

/* FORM CARD */
.form-wrapper {
    position: relative;
    z-index: 5;
}

.glass-card.prominent-form-card {
    background: #0f172a;
    border: 2px solid var(--accent-cyan);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.25);
}

.card-header-banner {
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid var(--accent-cyan);
    border-radius: 30px;
    padding: 6px 14px;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.timer-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.timer-display {
    color: var(--accent-emerald);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
}

.vip-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFD700;
    margin-bottom: 6px;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #CBD5E1;
    margin-bottom: 1.5rem;
}

/* Input Fields & Select Combobox */
.input-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group label i {
    color: var(--accent-cyan);
}

.input-group input,
select.custom-select {
    width: 100%;
    padding: 12px 16px;
    background: #070d19;
    border: 1.5px solid rgba(0, 242, 254, 0.4);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

select.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2300F2FE' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer;
}

select.custom-select option {
    background: #0f172a;
    color: #ffffff;
    padding: 10px;
}

.input-group input:focus,
select.custom-select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 14px var(--accent-glow);
    background-color: #0c1527;
}

.input-group input.error,
select.custom-select.error {
    border-color: var(--danger);
    box-shadow: 0 0 8px rgba(255, 82, 82, 0.5);
}

.error-msg {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
    font-weight: 600;
}

.error-msg.visible {
    display: block;
}

.applied-code-box {
    background: rgba(0, 245, 160, 0.12);
    border: 1px dashed rgba(0, 245, 160, 0.5);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.applied-label {
    font-size: 0.825rem;
    color: #CBD5E1;
}

.applied-code-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent-emerald);
    letter-spacing: 1px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #00F2FE 0%, #4FACFE 50%, #00F5A0 100%);
    background-size: 200% auto;
    border: none;
    color: #070d19;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

.submit-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.6);
}

.divider-line {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0 1rem 0;
    color: #94A3B8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.divider-line::before,
.divider-line::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.divider-line span {
    padding: 0 10px;
}

.skip-option-container { text-align: center; }

.skip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.skip-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.skip-hint {
    font-size: 0.78rem;
    color: #94A3B8;
    margin-top: 8px;
}

/* SEDES SECTION - SOLID DARK BACKGROUND PREVENTS OVERLAP */
.sedes-section.prominent-sedes {
    padding: 4rem 5%;
    background-color: #070d19;
    border-top: 2px solid var(--accent-cyan);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 10;
}

.sedes-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 800;
    margin: 8px 0 12px 0;
    color: #FFFFFF !important;
}

.section-subtitle {
    color: #CBD5E1 !important;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.sedes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.sede-card {
    background: #0f172a;
    border: 1.5px solid rgba(0, 242, 254, 0.35);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.sede-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 242, 254, 0.3);
}

.sede-card.featured.highlight-glow {
    border: 2px solid var(--accent-cyan);
    background: linear-gradient(135deg, #0f172a, rgba(0, 242, 254, 0.15));
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
}

.sede-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald));
    color: #070d19;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.sede-badge.promo-badge {
    background: linear-gradient(135deg, #00F5A0, #00F2FE);
    color: #070d19;
}

.sede-card h3 {
    font-size: 1.35rem;
    color: #FFFFFF !important;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sede-dates {
    list-style: none;
    font-size: 0.9rem;
    color: #E2E8F0;
    margin-bottom: 1.25rem;
}

.sede-dates li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sede-dates li span {
    color: #FFFFFF;
    font-weight: 600;
}

.sede-btn, .sede-btn-outline {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.sede-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald));
    color: #070d19;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.sede-btn-outline {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.sede-btn-outline:hover {
    background: var(--accent-cyan);
    color: #070d19;
}

/* DETAILS SECTION - SOLID DARK BACKGROUND PREVENTS OVERLAP */
.details-section {
    padding: 4rem 5%;
    background-color: #070d19;
    position: relative;
    z-index: 10;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.details-card.bright-card {
    background: #0f172a;
    border: 1.5px solid rgba(0, 242, 254, 0.4);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.1);
}

.details-card.bright-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00F2FE !important;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-desc.bright-text {
    font-size: 1rem;
    color: #F8FAFC !important;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.check-list.bright-list {
    list-style: none;
}

.check-list.bright-list li {
    font-size: 0.95rem;
    color: #FFFFFF !important;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.check-list.bright-list li strong {
    color: #00F5A0 !important;
}

.modules-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-item.bright-module {
    background: #1e293b;
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Modal Overlay & Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 13, 25, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #0f172a;
    border: 2px solid var(--accent-cyan);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 242, 254, 0.4);
}

.modal-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 245, 160, 0.15);
    color: var(--accent-emerald);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.modal-title { font-size: 1.6rem; margin-bottom: 8px; color: #FFFFFF; }
.modal-text { font-size: 0.95rem; color: #CBD5E1; margin-bottom: 1.25rem; }

.modal-code-box {
    background: rgba(0, 242, 254, 0.12);
    border: 2px dashed var(--accent-cyan);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.modal-code {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 2px;
}

.modal-copy-btn {
    background: var(--accent-cyan);
    color: #070d19;
    border: none;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
}

.modal-instruction { font-size: 0.85rem; color: #94A3B8; margin-bottom: 1.5rem; }

.modal-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-cyan));
    color: #070d19;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 0.85rem;
    cursor: pointer;
}

#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
}

/* UNIVERSAL MOBILE RESPONSIVENESS FOR ALL PHONE RESOLUTIONS */
@media (max-width: 992px) {
    .header-nav {
        padding: 0.8rem 1rem;
    }
    
    .official-logo-img {
        height: 36px;
    }
    
    .direct-site-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .main-wrapper {
        padding: 1.5rem 1rem 2.5rem 1rem;
    }

    .grid-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* FORM WRAPPER APPEARS FIRST AT TOP OF MOBILE SCREEN */
    .form-wrapper {
        order: -1;
        width: 100%;
    }

    .info-content {
        order: 1;
        width: 100%;
    }

    .glass-card.prominent-form-card {
        padding: 1.5rem 1.25rem;
    }

    .sedes-section.prominent-sedes,
    .details-section {
        padding: 2.5rem 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sedes-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .course-specs-bar {
        grid-template-columns: 1fr;
    }

    .direct-site-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .banner-btn {
        justify-content: center;
    }
}
