/* 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: #1a1a1a;
    background: #ffffff;
}

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

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3d29;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2d5a3d;
    color: #fff;
}

.btn-accept:hover {
    background: #1e3d29;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Header - Asymmetric */
.header-asymmetric {
    padding: 1.5rem 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.nav-right a {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.nav-right a:hover {
    color: #2d5a3d;
}

/* Container Variations */
.container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

/* Hero Offset */
.hero-offset {
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-left {
    max-width: 650px;
    margin-bottom: 3rem;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.hero-image-right {
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-right img {
    width: 100%;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5a3d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1e3d29;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.25);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2d5a3d;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #2d5a3d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2d5a3d;
    color: #fff;
}

/* Section - Irregular */
.section-irregular {
    padding: 6rem 0;
    position: relative;
}

.content-block-offset-right {
    max-width: 700px;
    margin-left: 8rem;
}

.content-block-offset-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block-offset-right p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.stats-overlay {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    padding-left: 8rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d5a3d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    max-width: 150px;
}

/* Section Shifted Left */
.section-shifted-left {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-shifted-left .container-asymmetric {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.image-block-large {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.content-block-narrow h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.content-block-narrow p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.8rem;
}

.link-arrow {
    font-size: 1rem;
    font-weight: 600;
    color: #2d5a3d;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* Section Overlapping */
.section-overlapping {
    padding: 6rem 0;
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.card-overlap {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.card-overlap:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-1 {
    margin-top: 0;
}

.card-2 {
    margin-top: 2rem;
}

.card-3 {
    margin-top: 1rem;
}

.card-4 {
    margin-top: 3rem;
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e9ecef;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.card-overlap h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Testimonial Offset */
.testimonial-offset {
    padding: 5rem 0;
    background: #2d5a3d;
}

.testimonial-large {
    padding: 3rem 2rem;
    text-align: left;
}

.testimonial-large p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-large cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    display: block;
}

/* Services Preview Asymmetric */
.services-preview-asymmetric {
    padding: 6rem 0;
}

.services-intro-left {
    max-width: 600px;
    margin-bottom: 3rem;
}

.services-intro-left h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro-left p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

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

.service-card-compact {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card-compact:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card-compact h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-compact p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.link-simple {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d5a3d;
}

/* CTA Section Diagonal */
.cta-section-diagonal {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4f1 0%, #e2e8e4 100%);
}

.cta-section-diagonal .container-asymmetric {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

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

.cta-content-block h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-container-offset {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5a3d;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2d5a3d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e3d29;
    transform: translateY(-2px);
}

/* Insights Irregular */
.insights-irregular {
    padding: 5rem 0;
    background: #f8f9fa;
}

.insights-irregular h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.insights-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.insight-block {
    flex: 1;
    min-width: 280px;
}

.insight-block h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Trust Section Shifted */
.trust-section-shifted {
    padding: 5rem 0;
}

.trust-section-shifted h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.principles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principles-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.principles-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Final CTA Offset */
.final-cta-offset {
    padding: 6rem 0;
    background: #1a1a1a;
}

.final-cta-offset .container-asymmetric {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.cta-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.cta-text-block {
    flex: 1;
    color: #fff;
}

.cta-text-block h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.cta-text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-text-block .cta-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-text-block .cta-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Footer Asymmetric */
.footer-asymmetric {
    padding: 4rem 0 2rem;
    background: #1a1a1a;
    color: #fff;
}

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    flex: 1;
    min-width: 180px;
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.page-intro {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.service-block-offset {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.service-block-2,
.service-block-4,
.service-block-6 {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1.2;
}

.service-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #2d5a3d;
    font-size: 1.5rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #2d5a3d;
    margin-top: 2rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d5a3d;
}

.price-info {
    font-size: 0.9rem;
    color: #666;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

/* CTA Services Diagonal */
.cta-services-diagonal {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3d29 100%);
    text-align: center;
}

.cta-services-diagonal h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-services-diagonal p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-services-diagonal .cta-primary {
    background: #fff;
    color: #2d5a3d;
}

.cta-services-diagonal .cta-primary:hover {
    background: #f0f4f1;
}

/* Contact Layout Irregular */
.contact-layout-irregular {
    padding: 5rem 0;
}

.contact-layout-irregular .container-wide {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info-offset {
    flex: 1.2;
}

.contact-info-offset h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-email {
    font-weight: 600;
    color: #2d5a3d;
    font-size: 1.1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.8rem;
    font-style: italic;
}

.contact-visual-offset {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Additional Irregular */
.contact-additional-irregular {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-additional-irregular h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.step-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* FAQ Offset */
.faq-offset {
    padding: 5rem 0;
}

.faq-offset h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* About Story Irregular */
.about-story-irregular {
    padding: 5rem 0;
}

.about-story-irregular .container-wide {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-content-left {
    flex: 1.3;
}

.story-content-left h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content-left p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.story-image-offset {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Values Staggered */
.values-staggered {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-staggered h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Approach Diagonal */
.approach-diagonal {
    padding: 5rem 0;
}

.approach-diagonal .container-wide {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.approach-text-right {
    flex: 1.2;
}

.approach-text-right h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-text-right p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.approach-visual-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Team Offset */
.team-offset {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-offset h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-offset p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Numbers Irregular */
.numbers-irregular {
    padding: 5rem 0;
}

.numbers-irregular h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.number-block {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.number-large {
    font-size: 4rem;
    font-weight: 800;
    color: #2d5a3d;
    display: block;
    margin-bottom: 0.5rem;
}

.number-block p {
    font-size: 0.95rem;
    color: #666;
}

/* CTA About Offset */
.cta-about-offset {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f1 0%, #e2e8e4 100%);
    text-align: center;
}

.cta-about-offset h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-about-offset p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

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

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

.legal-content a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 3rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f4f1 0%, #e2e8e4 100%);
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.service-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.05rem;
    color: #2d5a3d;
    font-weight: 600;
}

/* Next Steps Irregular */
.next-steps-irregular {
    padding: 5rem 0;
}

.next-steps-irregular h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #2d5a3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Thanks CTA Offset */
.thanks-cta-offset {
    padding: 5rem 0;
    background: #f8f9fa;
}

.thanks-cta-offset h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cta-options {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-option {
    flex: 1;
    min-width: 300px;
}

.cta-option h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.cta-option p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title-large {
        font-size: 2.8rem;
    }

    .container-offset,
    .container-asymmetric,
    .container-wide {
        padding: 0 2rem;
    }

    .section-shifted-left .container-asymmetric,
    .approach-diagonal .container-wide,
    .about-story-irregular .container-wide,
    .contact-layout-irregular .container-wide {
        flex-direction: column;
        gap: 3rem;
    }

    .final-cta-offset .container-asymmetric,
    .cta-section-diagonal .container-asymmetric {
        flex-direction: column;
    }

    .service-block-offset {
        flex-direction: column !important;
    }

    .cards-staggered .card-overlap {
        margin-top: 0 !important;
    }
}

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

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .hero-title-large {
        font-size: 2.2rem;
    }

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

    .content-block-offset-right {
        margin-left: 0;
    }

    .stats-overlay {
        padding-left: 0;
        flex-direction: column;
        gap: 2rem;
    }

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

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