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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: 0.3s;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    padding-top: 100px;
    position: relative;
}

.hero-offset-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
    margin-left: 80px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--secondary);
}

.hero-text-block p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    position: relative;
    margin-top: -50px;
}

.hero-visual-right img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

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

.cta-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.trust-strip {
    background: var(--secondary);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.trust-strip p {
    font-size: 1.1rem;
    margin: 0;
}

.offset-intro {
    padding: 120px 0;
}

.intro-sidebar {
    flex: 0 0 350px;
}

.intro-sidebar h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary);
    position: sticky;
    top: 120px;
}

.intro-main {
    flex: 1;
}

.intro-main p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
}

.link-inline {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    transition: 0.3s;
}

.link-inline:hover {
    border-bottom-color: transparent;
}

.visual-break {
    padding: 80px 0;
}

.image-overlap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.image-overlap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.overlay-stat {
    position: absolute;
    bottom: 40px;
    right: 60px;
    background: white;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
}

.programs-grid {
    padding: 100px 0;
    background: var(--bg-alt);
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-header-offset p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.programs-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.program-card {
    flex: 1 1 calc(50% - 20px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
    flex: 1 1 100%;
    flex-direction: row;
}

.program-visual {
    height: 250px;
    overflow: hidden;
}

.program-card.featured .program-visual {
    flex: 0 0 45%;
    height: auto;
}

.program-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-card.featured .program-content {
    flex: 1;
}

.program-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.program-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.program-details {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.program-details span {
    padding: 8px 16px;
    background: var(--bg-alt);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.program-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-select {
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-select:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.testimonial-offset {
    padding: 120px 0;
}

.testimonial-large {
    flex: 1;
}

.testimonial-large p {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 30px;
}

.testimonial-large cite {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: normal;
}

.testimonial-small {
    flex: 0 0 400px;
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 16px;
    align-self: center;
}

.testimonial-small p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text);
}

.testimonial-small cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.method-reveal {
    padding: 100px 0;
    background: var(--secondary);
    color: white;
}

.method-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.method-text {
    flex: 1;
}

.method-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.method-list {
    list-style: none;
    margin-bottom: 40px;
}

.method-list li {
    font-size: 1.3rem;
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
}

.method-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
}

.method-visual {
    flex: 0 0 500px;
}

.method-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
}

.stats-scattered {
    padding: 120px 0;
    position: relative;
}

.stats-scattered .container {
    min-height: 400px;
    position: relative;
}

.stat-block {
    position: absolute;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-block.top-left {
    top: 0;
    left: 50px;
}

.stat-block.top-right {
    top: 80px;
    right: 100px;
}

.stat-block.bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

.enrollment-form {
    padding: 120px 0;
    background: var(--bg-alt);
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 10%;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 800;
}

.form-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.enrollment-form-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}

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

.btn-submit {
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.final-push {
    padding: 100px 0;
    text-align: center;
}

.final-push h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--secondary);
}

.final-push p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-asymmetric {
    background: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-btn {
    padding: 18px 35px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 25px;
    z-index: 1100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.btn-cookie:hover {
    background: var(--primary-dark);
}

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero-offset {
    padding: 150px 0 80px;
}

.page-hero-offset h1 {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
    color: var(--secondary);
}

.story-section {
    padding: 100px 0;
}

.story-sidebar {
    flex: 0 0 300px;
}

.story-sidebar h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: sticky;
    top: 120px;
}

.story-main {
    flex: 1;
}

.story-main p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.image-break {
    padding: 60px 0;
}

.image-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-offset {
    padding: 120px 0;
    background: var(--bg-alt);
}

.values-offset h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 800;
    color: var(--secondary);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

.team-intro {
    padding: 100px 0;
    text-align: center;
}

.team-intro h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.team-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text);
}

.approach-split {
    padding: 100px 0;
}

.approach-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.approach-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.approach-visual {
    flex: 0 0 450px;
}

.approach-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 16px;
}

.stats-inline {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.stat-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-item .label {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

.commitment-section {
    padding: 120px 0;
}

.commitment-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-block h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.commitment-block p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.page-hero-services {
    padding: 150px 0 80px;
    background: var(--bg-alt);
}

.page-hero-services h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero-services p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
}

.programs-detailed {
    padding: 100px 0;
}

.program-detail-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

.program-meta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 800;
}

.program-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 18px;
    background: var(--bg-alt);
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.program-price-large {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.program-price-large .currency {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.program-price-large .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.program-body p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.program-body h4 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.program-body ul {
    margin-bottom: 30px;
    padding-left: 25px;
}

.program-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.enrollment-cta {
    padding: 100px 0;
    background: var(--bg-alt);
    text-align: center;
}

.enrollment-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.enrollment-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.page-hero-contact {
    padding: 150px 0 80px;
}

.page-hero-contact h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero-contact p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-layout {
    padding: 100px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 0 0 450px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

.info-block a {
    color: var(--primary);
    text-decoration: none;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-additional {
    padding: 100px 0;
    background: var(--bg-alt);
}

.faq-preview {
    max-width: 900px;
    margin: 0 auto;
}

.faq-preview h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

.contact-cta {
    padding: 100px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-hero {
    padding: 150px 0;
    min-height: 100vh;
}

.thanks-hero .container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--secondary);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-detail {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.thanks-detail p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-next ol {
    padding-left: 25px;
}

.thanks-next li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.thanks-visual {
    flex: 0 0 450px;
}

.thanks-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
}

.thanks-resources {
    padding: 100px 0;
    background: var(--bg-alt);
}

.thanks-resources h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.resource-cards {
    display: flex;
    gap: 40px;
}

.resource-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.resource-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.resource-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-page {
    padding: 150px 0 100px;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.legal-updated {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--primary);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg-alt);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .hero-visual-right {
        margin-top: 40px;
    }

    .container-asymmetric {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .intro-sidebar,
    .story-sidebar {
        position: static;
    }

    .method-split,
    .approach-content,
    .contact-split {
        flex-direction: column;
    }

    .method-visual,
    .approach-visual {
        flex: 1;
    }

    .program-card.featured {
        flex-direction: column;
    }

    .program-card.featured .program-visual {
        flex: 1;
        height: 250px;
    }

    .stats-scattered .container {
        min-height: 700px;
    }

    .stat-block.top-right {
        right: 20px;
    }

    .thanks-hero .container {
        flex-direction: column;
    }

    .thanks-visual {
        flex: 1;
    }

    .resource-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        background: white;
        flex-direction: column;
        gap: 0;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 18px 25px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-text-block p {
        font-size: 1.1rem;
    }

    .program-card {
        flex: 1 1 100%;
    }

    .programs-layout {
        gap: 30px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 25px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-offset h1,
    .page-hero-services h1,
    .page-hero-contact h1 {
        font-size: 2.5rem;
    }

    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .stat-row {
        flex-direction: column;
        align-items: center;
    }
}