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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #457b9d;
    --accent-color: #1d3557;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #212529;
    --text-medium: #495057;
    --text-light: #6c757d;
    --border-color: #dee2e6;
}

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

.nav-asymmetric {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 70vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.hero-content-left {
    flex: 1.2;
    padding-right: 3rem;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.hero-visual-right {
    flex: 1;
}

.hero-visual-right img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-staggered {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-block-narrow {
    flex: 1.5;
    max-width: 600px;
}

.intro-block-narrow h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.intro-block-narrow p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.intro-stat-offset {
    flex: 1;
    margin-top: 5rem;
}

.stat-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.4;
}

.problem-overlap {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.overlap-image {
    flex: 1;
    margin-left: -2rem;
}

.overlap-image img {
    width: 100%;
    height: auto;
}

.overlap-text {
    flex: 1.3;
    padding: 2rem;
}

.overlap-text h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.overlap-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.insight-diagonal {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.diagonal-container {
    transform: skewY(2deg);
    max-width: 1400px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.pillar {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.pillar-offset {
    margin-top: 3rem;
}

.pillar h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--text-medium);
    line-height: 1.6;
}

.testimonial-asymmetric {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.testimonial-quote {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 4rem;
    border-radius: 8px;
    margin-left: 4rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: -3rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-style: italic;
    font-size: 1rem;
}

.services-preview-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.services-intro-narrow h2 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.services-intro-narrow p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

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

.service-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 2;
    min-width: 350px;
}

.card-medium {
    flex: 1.5;
    min-width: 300px;
    margin-top: 2rem;
}

.card-small {
    flex: 1;
    min-width: 280px;
}

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-service {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-service:hover {
    background-color: var(--accent-color);
}

.trust-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-left {
    flex: 1.3;
}

.trust-left h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

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

.trust-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    height: auto;
}

.form-section-floating {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
    margin: 4rem 0;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 25%;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--accent-color);
}

.final-cta-offset {
    max-width: 800px;
    margin: 6rem auto;
    margin-left: 15%;
    padding: 0 2rem;
}

.final-cta-offset h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.final-cta-offset p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.cta-link:hover {
    background-color: var(--accent-color);
}

.footer-asymmetric {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 37, 41, 0.95);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.about-hero-offset {
    max-width: 900px;
    margin: 4rem auto;
    margin-left: 20%;
    padding: 0 2rem;
}

.about-intro-stacked h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.story-overlap {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text-left {
    flex: 1.2;
}

.story-text-left h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.story-text-left p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-visual-right {
    flex: 1;
}

.story-visual-right img {
    width: 100%;
    height: auto;
}

.values-diagonal {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.values-diagonal h2 {
    font-size: 2.8rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-shifted {
    margin-top: 3rem;
}

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

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-intro-narrow {
    max-width: 700px;
    margin-bottom: 3rem;
}

.team-intro-narrow h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.team-intro-narrow p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-content-split {
    margin-left: 10%;
}

.team-stats {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-medium);
}

.approach-overlap {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: auto;
}

.approach-text {
    flex: 1.3;
}

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

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-floating {
    max-width: 900px;
    margin: 6rem auto;
    margin-right: 15%;
    padding: 0 2rem;
}

.mission-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3.5rem;
    border-radius: 8px;
}

.mission-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.services-hero-diagonal {
    max-width: 1000px;
    margin: 4rem auto;
    margin-left: 15%;
    padding: 0 2rem;
}

.services-hero-diagonal h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
}

.service-detail-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.card-right {
    margin-right: -2rem;
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.3;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.service-detail-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-price-box {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-medium);
}

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

.cta-services-floating {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.cta-box-offset {
    background-color: var(--light-bg);
    padding: 4rem;
    border-radius: 8px;
    margin-left: 15%;
    text-align: center;
}

.cta-box-offset h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: var(--accent-color);
}

.contact-hero-offset {
    max-width: 1000px;
    margin: 4rem auto;
    margin-right: 20%;
    padding: 0 2rem;
}

.contact-hero-offset h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
}

.contact-main-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

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

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

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

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

.info-block p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.email-display {
    user-select: all;
}

.contact-visual-right {
    flex: 1;
}

.contact-visual-right img {
    width: 100%;
    height: auto;
}

.location-info-stacked {
    max-width: 900px;
    margin: 5rem auto;
    margin-left: 15%;
    padding: 0 2rem;
}

.location-info-stacked h2 {
    font-size: 2.3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.location-info-stacked p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.directions-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

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

.directions-box p {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.thanks-hero-centered {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-content {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-info {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

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

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.step p {
    color: var(--text-medium);
    line-height: 1.6;
    text-align: center;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding-right: 0;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .intro-staggered {
        flex-direction: column;
    }

    .intro-stat-offset {
        margin-top: 2rem;
    }

    .problem-overlap,
    .story-overlap,
    .trust-split,
    .contact-main-asymmetric,
    .approach-overlap {
        flex-direction: column;
    }

    .overlap-image {
        margin-left: 0;
    }

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

    .card-left,
    .card-right {
        margin: 0;
    }

    .form-container-offset {
        margin-left: auto;
    }

    .final-cta-offset,
    .about-hero-offset,
    .services-hero-diagonal,
    .contact-hero-offset,
    .location-info-stacked,
    .mission-floating {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-quote {
        margin-left: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box-offset {
        margin-left: 0;
    }

    .team-content-split {
        margin-left: 0;
    }

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