/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #e9ecef;
}

/* Navigation - Floating Style */
.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero - Asymmetric Layout */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 550px;
    z-index: 10;
    margin-right: auto;
    padding-right: 3rem;
}

.hero-content-offset h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-visual-overlap {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 45%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    border: 2px solid #3498db;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Intro Section - Offset Layout */
.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-text-narrow {
    flex: 1;
    max-width: 600px;
}

.intro-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.intro-visual-right {
    flex: 1;
    max-width: 500px;
}

.intro-visual-right img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Problem Amplification */
.problem-amplification {
    display: flex;
    padding: 5rem 5%;
    background-color: #f8f9fa;
    gap: 3rem;
    align-items: center;
}

.problem-card-left {
    flex: 1;
    padding: 2rem;
}

.problem-card-left h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #555;
    border-left: 3px solid #e74c3c;
    margin-bottom: 1rem;
}

.problem-visual {
    flex: 1;
    max-width: 550px;
}

.problem-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Insight Section - Diagonal Layout */
.insight-section-diagonal {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.insight-section-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.insight-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.insight-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transform: translateY(0);
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-10px);
}

.insight-card:nth-child(2) {
    margin-top: 2rem;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-card p {
    color: #555;
    line-height: 1.7;
}

/* Trust Building - Stacked */
.trust-building-stacked {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.trust-content-wide {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.trust-content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content-wide p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.trust-features-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card-small {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 260px;
    max-width: 320px;
}

.feature-card-small h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.feature-card-small p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials - Inline Offset */
.testimonials-inline {
    padding: 6rem 5%;
}

.testimonials-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-offset-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card-left,
.testimonial-card-right,
.testimonial-card-center {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    font-style: italic;
    color: #555;
}

.testimonial-card-left {
    margin-right: auto;
    max-width: 70%;
}

.testimonial-card-right {
    margin-left: auto;
    max-width: 70%;
}

.testimonial-card-center {
    margin: 0 auto;
    max-width: 80%;
}

.testimonial-card-left cite,
.testimonial-card-right cite,
.testimonial-card-center cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

/* Services Display - Asymmetric Grid */
.services-display {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.services-display h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card-feature {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.service-card-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card-feature p {
    flex-grow: 1;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.form-modal.active {
    display: flex;
}

.form-modal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.form-modal-close:hover {
    color: #333;
}

.form-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.selected-course-display {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #555;
}

.form-modal-content form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-modal-content form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-submit-form {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* CTA Sections */
.cta-sticky-trigger {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content-centered p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-content-centered a {
    margin: 0 0.75rem;
}

/* Benefits Reveal - Diagonal */
.benefits-reveal-diagonal {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefits-reveal-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.benefits-offset-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border-left: 4px solid #27ae60;
}

.benefit-block p {
    color: #555;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Scientific Backing */
.scientific-backing {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.scientific-backing h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.scientific-backing p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.scientific-backing a {
    color: #3498db;
    text-decoration: underline;
}

.scientific-backing a:hover {
    color: #2980b9;
}

/* Final CTA - Overlap */
.final-cta-overlap {
    display: flex;
    padding: 6rem 5%;
    gap: 3rem;
    align-items: center;
}

.final-cta-visual {
    flex: 1;
    max-width: 500px;
}

.final-cta-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.final-cta-content {
    flex: 1;
    max-width: 500px;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

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

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

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

.footer-col-wide h4,
.footer-col-narrow h5 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-col-narrow ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-col-narrow ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    background-color: #34495e;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-references {
    margin-bottom: 2rem;
}

.footer-references h5 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-references p {
    font-size: 0.875rem;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-references a {
    color: #3498db;
    text-decoration: underline;
}

.footer-references a:hover {
    color: #5dade2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.875rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.sticky-cta-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.sticky-cta-btn:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem 5%;
    display: none;
    z-index: 3000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
    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;
    min-width: 250px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

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

/* Page Hero - Minimal */
.page-hero-minimal {
    padding: 6rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.page-hero-minimal p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-story-narrow {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 5%;
}

.about-story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-story-narrow p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Values - Offset Cards */
.values-offset-cards {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-offset-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card-large,
.value-card-small {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.value-card-large {
    flex: 1 1 60%;
    min-width: 350px;
}

.value-card-small {
    flex: 1 1 35%;
    min-width: 250px;
}

.value-card-large h3,
.value-card-small h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card-large p,
.value-card-small p {
    color: #555;
    line-height: 1.7;
}

/* Approach Visual Split */
.approach-visual-split {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    max-width: 500px;
}

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

.approach-content {
    flex: 1;
    max-width: 550px;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Team Insight */
.team-insight-simple {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.team-insight-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-insight-simple p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

/* About CTA Inline */
.about-cta-inline {
    padding: 5rem 5%;
    text-align: center;
}

.about-cta-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-cta-inline p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.about-cta-inline a {
    margin: 0 0.75rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 5%;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.service-detail-card:nth-child(even) {
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.service-visual {
    flex: 1;
    max-width: 400px;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
    max-width: 600px;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

/* Services CTA */
.services-cta {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Contact Page */
.contact-layout-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
    font-size: 1.125rem;
}

.contact-visual {
    flex: 1;
    max-width: 600px;
}

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

/* Contact FAQ */
.contact-faq {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-page-centered {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.next-steps-list {
    list-style: decimal;
    padding-left: 2rem;
}

.next-steps-list li {
    padding: 0.75rem 0;
    color: #555;
    font-size: 1.125rem;
    line-height: 1.7;
}

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

/* Legal Pages */
.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-page-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

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

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

.legal-page-content ul li {
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.7;
}

.legal-page-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page-content a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 5%;
    }

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
    }

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

    .hero-visual-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        max-width: 100%;
        transform: rotate(0);
        margin-top: 2rem;
    }

    .intro-offset,
    .problem-amplification,
    .final-cta-overlap,
    .approach-visual-split,
    .contact-layout-split {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

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

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