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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --danger-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a:hover {
    color: var(--primary-dark);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.8);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

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

.hero-subtext {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.cta-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
}

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

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-intro {
    background: var(--bg-light);
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem-amplification {
    padding: 6rem 0;
    background: var(--bg-white);
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.highlight-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.insight-reveal {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.centered-heading {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.centered-subtext {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-inline {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem;
}

.testimonial-inline.secondary {
    background: var(--text-dark);
}

.testimonial-inline blockquote {
    border-left: 4px solid var(--bg-white);
    padding-left: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.benefit-showcase {
    background: var(--bg-white);
}

.asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.benefit-primary {
    flex: 1.5;
}

.benefit-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.benefit-list li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--border-color);
}

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

.benefit-secondary {
    flex: 1;
}

.benefit-secondary img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.trust-builder {
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.storytelling-section {
    background: var(--bg-white);
}

.storytelling-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.services-reveal {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
    padding: 6rem 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.6rem;
}

.service-level {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    color: var(--text-light);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.service-pricing {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-section {
    background: var(--text-dark);
    color: var(--bg-white);
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-inline-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.final-testimonials {
    background: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-box {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.enrollment-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.enrollment-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-button-large {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.3rem 3.5rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

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

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    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: 999;
}

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

.header-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-container p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story,
.values-section,
.team-section,
.journey-section,
.commitment-section {
    padding: 4rem 2rem;
}

.about-story {
    background: var(--bg-white);
}

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

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.values-section {
    background: var(--bg-light);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background: var(--bg-white);
}

.journey-section {
    background: var(--bg-light);
}

.journey-intro {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.commitment-section {
    background: var(--bg-white);
}

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

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

.commitment-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.cta-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.services-page-intro {
    background: var(--bg-light);
}

.services-detailed {
    padding: 4rem 0;
    background: var(--bg-white);
}

.service-detailed-card {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
}

.service-detailed-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    position: relative;
}

.service-detailed-card.premium {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.featured-indicator {
    position: absolute;
    top: -18px;
    right: 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-weight: 600;
}

.service-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-detailed-header h2 {
    font-size: 2.2rem;
}

.service-badge {
    padding: 0.5rem 1.2rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-detailed-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detailed-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.detailed-features {
    list-style: none;
}

.detailed-features li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.detailed-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.course-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.detail-item {
    padding: 0.8rem 0;
    font-size: 1rem;
}

.detail-item strong {
    color: var(--text-dark);
}

.pricing-section {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.price-display {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.savings-note {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-enroll {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-faq {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.services-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-faq {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.contact-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--bg-white);
    padding: 6rem 2rem;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.selected-course {
    font-size: 1.1rem;
    font-weight: 600;
}

.next-steps {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-support {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.thanks-support h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.thanks-support > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.support-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.support-card a {
    font-weight: 600;
}

.thanks-reminder {
    background: var(--bg-white);
    padding: 4rem 2rem;
}

.thanks-reminder h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.reminder-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.reminder-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.thanks-final {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.legal-page {
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-light);
}

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

.cookies-table th {
    background: var(--text-dark);
    color: var(--bg-white);
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-layout,
    .asymmetric-layout {
        flex-direction: column;
    }

    .insight-cards,
    .testimonial-grid,
    .support-grid {
        flex-direction: column;
    }

    .services-grid .service-card {
        min-width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}
