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

:root {
    --primary-color: #6B46C1;
    --secondary-color: #9F7AEA;
    --dark-color: #1A202C;
    --light-bg: #F7FAFC;
    --text-color: #2D3748;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --success-color: #48BB78;
    --white: #FFFFFF;
}

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
    width: 90%;
    max-width: 1100px;
}

.nav-brand {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

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

.hero-story {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    margin-top: 0;
    padding: 120px 24px 80px;
}

.hero-overlay {
    width: 100%;
}

.hero-content-narrow {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-story h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 48px;
}

.hero-visual-indicator {
    margin-top: 60px;
    opacity: 0.7;
    font-size: 15px;
    font-weight: 500;
}

.story-intro {
    padding: 80px 24px;
    background: var(--light-bg);
}

.story-hook {
    font-size: 20px;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 28px;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.story-scenario {
    padding: 100px 24px;
    background: var(--white);
}

.scenario-split {
    display: flex;
    gap: 64px;
    align-items: center;
}

.scenario-text {
    flex: 1;
}

.scenario-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--dark-color);
}

.scenario-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.scenario-image {
    flex: 1;
}

.scenario-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-amplification {
    padding: 100px 24px;
    background: var(--dark-color);
    color: var(--white);
}

.problem-amplification h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
}

.problem-amplification p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0.9;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.problem-icon {
    font-size: 32px;
    color: #FC8181;
    font-weight: 700;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.insight-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.insight-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
}

.insight-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-inline {
    padding: 60px 24px;
    background: var(--light-bg);
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(107, 70, 193, 0.3);
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 70, 193, 0.4);
}

.trust-building {
    padding: 100px 24px;
    background: var(--white);
}

.trust-building h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 64px;
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-card {
    flex: 1 1 calc(50% - 16px);
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
}

.trust-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonials-inline {
    padding: 100px 24px;
    background: var(--light-bg);
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.75;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 100px 24px;
    background: var(--white);
}

.benefits-reveal h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
}

.benefits-reveal p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    font-size: 18px;
    line-height: 1.7;
    padding-left: 36px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 22px;
}

.urgency-element {
    padding: 60px 24px;
    background: var(--dark-color);
}

.urgency-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.urgency-text {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.services-pricing {
    padding: 100px 24px;
    background: var(--light-bg);
}

.services-pricing h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

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

.pricing-card-featured {
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-header {
    padding: 32px 32px 24px;
    background: var(--light-bg);
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-body {
    padding: 32px;
    flex: 1;
}

.pricing-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 16px;
    padding-left: 28px;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.course-details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.course-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.course-details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-details li {
    font-size: 15px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.course-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.course-details p {
    font-size: 15px;
    color: var(--text-light);
}

.pricing-footer {
    padding: 24px 32px 32px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.enrollment-form-section {
    padding: 100px 24px;
    background: var(--white);
}

.enrollment-form-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.enrollment-form-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group input[readonly] {
    background: var(--light-bg);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 100px 24px;
    background: var(--light-bg);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.btn-final-cta {
    display: inline-block;
    background: var(--dark-color);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-cta-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s;
}

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

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 24px 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

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

.page-hero {
    padding: 140px 24px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

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

.page-hero-lead {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 720px;
    margin: 0 auto;
}

.about-story,
.about-approach,
.services-intro,
.contact-content,
.thanks-content,
.thanks-next,
.thanks-resources {
    padding: 80px 24px;
}

.about-story h2,
.about-approach h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
}

.about-story p,
.about-approach p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.team-values {
    padding: 80px 24px;
    background: var(--light-bg);
}

.team-values h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

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

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

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.approach-list,
.preparation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-list li,
.preparation-list li {
    font-size: 17px;
    line-height: 1.7;
    padding-left: 32px;
    position: relative;
}

.approach-list li::before,
.preparation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.about-stats {
    padding: 80px 24px;
    background: var(--dark-color);
    color: var(--white);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.8;
}

.about-cta {
    padding: 80px 24px;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-faq {
    padding: 80px 24px;
    background: var(--light-bg);
}

.services-faq h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-grid {
    display: flex;
    gap: 64px;
}

.contact-info,
.contact-additional {
    flex: 1;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.faq-compact {
    margin-bottom: 32px;
}

.faq-compact h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.faq-compact p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-compact a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-compact a:hover {
    text-decoration: underline;
}

.contact-cta {
    padding: 80px 24px;
    background: var(--light-bg);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.thanks-hero {
    padding: 140px 24px 80px;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: var(--white);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: #48BB78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 32px;
}

.thanks-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.thanks-content h2,
.thanks-next h2,
.thanks-resources h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.thanks-step {
    display: flex;
    gap: 24px;
}

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

.thanks-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.thanks-step p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-service-box {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.thanks-next {
    background: var(--light-bg);
}

.thanks-next p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text-light);
}

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

.resource-card {
    flex: 1;
    background: var(--light-bg);
    padding: 32px;
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-cta {
    padding: 80px 24px;
    text-align: center;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    color: var(--text-light);
}

.thanks-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-cta a:hover {
    text-decoration: underline;
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
}

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

.legal-content {
    padding: 140px 24px 80px;
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

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

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

@media (max-width: 1024px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 0;
        top: 0;
        width: 100%;
        max-width: none;
    }

    .scenario-split {
        flex-direction: column;
    }

    .trust-grid,
    .values-grid {
        flex-direction: column;
    }

    .trust-card,
    .value-card {
        flex: 1 1 100%;
    }

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

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

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

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-story h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-hero h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
}
