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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    border-color: white;
}

.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
}

.nav-main {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-main a {
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-main a.active::after,
.nav-main a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-immersive {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(139, 115, 85, 0.75) 100%),
                url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600&h=900&fit=crop') center/cover;
    margin-top: 60px;
    padding: 3rem 20px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-family: Georgia, serif;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-hero:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.section-story {
    padding: 6rem 20px;
    background: var(--bg-white);
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.image-inline {
    margin: 4rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.image-inline img {
    width: 100%;
    height: auto;
}

.section-insight {
    padding: 5rem 20px;
    background: var(--bg-light);
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.insight-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
}

.insight-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.section-amplify {
    padding: 6rem 20px;
    background: var(--bg-white);
}

.section-amplify h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.amplify-reasons {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.reason-card strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.reason-card p {
    margin: 0;
    color: var(--text-light);
}

.cta-inline,
.cta-inline-alt {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-inline:hover,
.cta-inline-alt:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

.cta-inline-alt {
    background: var(--accent-color);
    color: var(--text-dark);
}

.section-method {
    padding: 6rem 20px;
    background: var(--bg-light);
}

.method-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.method-text {
    flex: 1;
    min-width: 350px;
}

.method-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.method-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.method-visual {
    flex: 1;
    min-width: 350px;
}

.method-visual img {
    border-radius: 8px;
    width: 100%;
}

.section-testimonials {
    padding: 6rem 20px;
    background: var(--primary-color);
    color: white;
}

.section-testimonials h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.8;
    display: block;
}

.section-programs {
    padding: 6rem 20px;
    background: var(--bg-light);
}

.section-programs h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.programs-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.program-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    position: relative;
}

.program-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.program-header {
    margin-bottom: 1.5rem;
}

.program-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.program-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.program-features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.program-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.program-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-program {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-program:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.section-urgency {
    padding: 5rem 20px;
    background: var(--bg-white);
    text-align: center;
}

.section-urgency h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.section-urgency p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.section-enrollment {
    padding: 6rem 20px;
    background: var(--bg-light);
}

.enrollment-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.enrollment-content {
    flex: 1;
    min-width: 300px;
}

.enrollment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.enrollment-form {
    flex: 1;
    min-width: 350px;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.section-final-trust {
    padding: 5rem 20px;
    background: var(--bg-white);
    text-align: center;
}

.section-final-trust h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-final-trust p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 20px 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-cta-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

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

.page-hero {
    padding: 8rem 20px 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-intro {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.section-about-story {
    padding: 6rem 20px;
    background: var(--bg-white);
}

.section-philosophy {
    padding: 6rem 20px;
    background: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 6px;
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-approach {
    padding: 6rem 20px;
    background: var(--bg-white);
}

.section-who {
    padding: 6rem 20px;
    background: var(--bg-light);
}

.who-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.who-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 6px;
}

.who-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.section-values {
    padding: 6rem 20px;
    background: var(--bg-white);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.values-list li {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 1.05rem;
}

.values-list li strong {
    color: var(--primary-color);
}

.section-cta-alt {
    padding: 5rem 20px;
    background: var(--secondary-color);
    text-align: center;
    color: white;
}

.section-cta-alt h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-cta-alt p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.section-programs-detail {
    padding: 4rem 20px;
}

.program-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.program-detail.reverse {
    flex-direction: row-reverse;
}

.program-detail-content {
    flex: 1;
    min-width: 350px;
}

.program-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.program-meta {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.program-badge-inline {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.program-detail-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.program-detail-content ul li {
    padding: 0.5rem 0;
    position: relative;
}

.program-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.program-detail-image {
    flex: 1;
    min-width: 350px;
}

.program-detail-image img {
    border-radius: 8px;
    width: 100%;
}

.section-enrollment-alt {
    padding: 5rem 20px;
    background: var(--bg-light);
    text-align: center;
}

.section-enrollment-alt h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-enrollment-alt p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.section-contact {
    padding: 4rem 20px;
    background: var(--bg-white);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.contact-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-item p {
    margin: 0;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin-top: 2rem;
}

.section-faq {
    padding: 5rem 20px;
    background: var(--bg-light);
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.page-hero-simple {
    padding: 8rem 20px 3rem;
    background: var(--bg-light);
    text-align: center;
    margin-top: 60px;
}

.page-hero-simple h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-legal {
    padding: 4rem 20px;
    background: var(--bg-white);
}

.section-legal h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-legal h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.section-legal ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.section-legal ul li {
    padding: 0.5rem 0;
    position: relative;
}

.section-legal ul li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
}

.thanks-hero {
    padding: 8rem 20px 6rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    margin-top: 60px;
}

.thanks-hero h1 {
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.thanks-program {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
    color: white;
}

.step-content strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    opacity: 0.95;
}

.thanks-resources {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.thanks-resources h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.thanks-resources p {
    color: white;
    margin: 0;
    opacity: 0.95;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-main {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        display: none;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .insight-grid,
    .programs-flex {
        flex-direction: column;
    }

    .method-split,
    .program-detail {
        flex-direction: column;
    }

    .program-detail.reverse {
        flex-direction: column;
    }

    .enrollment-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-cta-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}
