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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb5;
    --accent-color: #e8734d;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --background-light: #ffffff;
    --background-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.header-main {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.ad-label {
    background-color: var(--background-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
    border: 1px solid var(--border-color);
}

.hero-story {
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtext {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

.hero-image-full {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-gray);
}

.hero-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.content-centered {
    max-width: 720px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-centered p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #444;
}

.insight-visual {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ddd;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 2px;
}

.citation:hover {
    text-decoration: underline;
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.problem-cards {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.problem-card {
    flex: 1;
    padding: 2rem;
    background-color: var(--background-gray);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.problem-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.solution-reveal {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.asymmetric-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.reveal-text-offset {
    flex: 1.2;
    padding-right: 2rem;
}

.reveal-text-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.reveal-text-offset p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.reveal-image-offset {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ddd;
}

.reveal-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.trust-building h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.trust-elements {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: center;
    max-width: 350px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.trust-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.testimonial-block {
    padding: 2.5rem;
    margin-bottom: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-detailed {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefit-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ddd;
}

.benefit-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.benefit-text-right {
    flex: 1;
}

.benefit-text-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-list {
    list-style-position: inside;
    padding-left: 0;
}

.benefit-list li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #444;
    line-height: 1.6;
    padding-left: 0.5rem;
}

.programs-reveal {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.programs-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.programs-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.program-card {
    background-color: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

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

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--background-gray);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    border: 1px solid var(--border-color);
}

.program-badge.popular {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.program-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-duration {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-includes {
    margin: 1.5rem 0;
}

.program-includes h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.program-includes p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.program-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-select.primary {
    background-color: var(--accent-color);
}

.btn-select.primary:hover {
    background-color: #d6632f;
}

.cta-form-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: var(--background-gray);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #d6632f;
}

.scientific-references {
    padding: 3rem 2rem;
    background-color: var(--background-gray);
}

.scientific-references h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.footer-main {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: #6c757d;
    color: var(--text-light);
}

.btn-reject:hover {
    background-color: #5a6268;
}

.about-hero {
    padding: 4rem 2rem;
    background-color: var(--background-gray);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.methodology-section {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.method-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.method-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.method-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 2rem;
}

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

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.values-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ddd;
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.difference-section {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.difference-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

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

.difference-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.difference-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.difference-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #d6632f;
}

.services-hero {
    padding: 4rem 2rem;
    background-color: var(--background-gray);
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block.featured-service {
    background-color: var(--background-gray);
    padding: 3rem;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.service-price-block {
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-service.primary {
    background-color: var(--accent-color);
}

.btn-service.primary:hover {
    background-color: #d6632f;
}

.service-image-right,
.service-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ddd;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.popular-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-section {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.comparison-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: var(--background-gray);
}

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

.faq-services h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

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

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-services p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: var(--background-gray);
}

.contact-main {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.response-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    background-color: #ddd;
    display: block;
    object-fit: cover;
}

.contact-note {
    background-color: var(--background-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.faq-contact {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.faq-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

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

.faq-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.cta-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.thanks-hero {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
    text-align: center;
}

.thanks-content {
    max-width: 720px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--text-light);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #555;
}

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

.thanks-info-box {
    background-color: var(--background-gray);
    padding: 3rem;
    border-radius: 12px;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-program-summary {
    padding: 3rem 2rem;
    background-color: var(--background-gray);
    display: none;
}

.program-summary-box {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.program-summary-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.selected-program {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.summary-note {
    font-size: 1.05rem;
    color: #555;
}

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

.thanks-resources h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

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

.resource-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--background-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-contact {
    padding: 5rem 2rem;
    background-color: var(--background-gray);
    text-align: center;
}

.thanks-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-contact p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.legal-page {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

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

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

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

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

@media (max-width: 768px) {
    .container-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-primary {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

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

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

    .split-layout,
    .asymmetric-container,
    .benefits-asymmetric,
    .contact-layout,
    .service-block {
        flex-direction: column;
    }

    .problem-cards,
    .trust-elements {
        flex-direction: column;
    }

    .difference-card,
    .faq-card,
    .resource-card {
        flex: 1 1 100%;
    }

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

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