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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

.header-minimal {
    position: relative;
    z-index: 100;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.hero-visual-dominant {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-overlay {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-overlay {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-overlay:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.story-intro {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.visual-break {
    margin: var(--spacing-lg) 0;
}

.image-full-bleed {
    width: 100%;
    background-color: #95a5a6;
}

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

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

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

.problem-text {
    flex: 1.3;
}

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

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.problem-text sup a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.problem-visual {
    flex: 1;
    background-color: #7f8c8d;
}

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

.insight-reveal {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

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

.insight-card p {
    line-height: 1.6;
}

.testimonial-inline {
    padding: var(--spacing-xl) 2rem;
    background-color: #f8f9fa;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #95a5a6;
}

.testimonial-text {
    flex: 1;
}

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

.testimonial-author {
    color: #7f8c8d;
    font-weight: 600;
}

.services-reveal {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
}

.services-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-grid-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-visual {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-card-visual img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    background-color: #95a5a6;
}

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.duration {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.select-service-btn {
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

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

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

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.trust-content sup a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.form-modal.hidden {
    display: none;
}

.modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

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

.form-summary {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.form-summary p {
    margin-bottom: 0.5rem;
}

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

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.final-cta {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--primary-color);
    color: white;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.cta-btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-stacked {
    background-color: #2c3e50;
    color: white;
    padding: var(--spacing-lg) 2rem var(--spacing-md);
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
}

.footer-references ol li a {
    color: #3498db;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #27ae60;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero-minimal {
    margin-top: 70px;
    padding: var(--spacing-lg) 2rem;
    background-color: var(--bg-light);
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-content-centered p {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.about-story {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
}

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

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

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-insert {
    margin: 3rem 0;
    background-color: #95a5a6;
}

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

.methodology-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-light);
}

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

.method-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: white;
    border-radius: 6px;
}

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

.method-card p {
    line-height: 1.6;
}

.philosophy-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
}

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

.philosophy-text {
    flex: 1.2;
}

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

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.philosophy-image {
    flex: 1;
    background-color: #7f8c8d;
}

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

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

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.value-item {
    padding: 2rem;
    background-color: white;
    border-left: 4px solid var(--secondary-color);
}

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

.value-item p {
    line-height: 1.6;
}

.services-detailed {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: #95a5a6;
}

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

.service-content-block {
    flex: 1;
}

.service-content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    line-height: 1.5;
}

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

.service-pricing-block {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.duration-label {
    color: #7f8c8d;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.comparison-info {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-light);
}

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

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

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

.comparison-item {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: 6px;
}

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

.comparison-item p {
    line-height: 1.6;
}

.contact-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
}

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

.contact-info-block {
    flex: 1;
}

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

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

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

.info-item p {
    line-height: 1.6;
    color: #7f8c8d;
}

.contact-visual {
    flex: 1;
    background-color: #95a5a6;
}

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

.faq-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.faq-item {
    padding: 2rem;
    background-color: white;
    border-radius: 6px;
}

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

.faq-item p {
    line-height: 1.6;
}

.thanks-section {
    padding: var(--spacing-xl) 2rem;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

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

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.step-content p {
    line-height: 1.6;
}

.selected-program-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.selected-program-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.selected-program-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--bg-white);
    margin-top: 70px;
}

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

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

.legal-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-container p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

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

    .content-asymmetric,
    .content-asymmetric-about,
    .contact-layout {
        flex-direction: column;
    }

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

    .testimonial-item {
        flex-direction: column !important;
    }

    .testimonial-item img {
        width: 100%;
    }

    .service-card-visual {
        flex-direction: column;
    }

    .service-card-visual img {
        width: 100%;
        height: 200px;
    }

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

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

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