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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba0;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background-color: var(--bg-white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
    position: relative;
}

.hero-content-left {
    flex: 0 0 45%;
    padding: 80px 40px 40px 0;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -60px;
    margin-top: 40px;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background-color: #d0d7e0;
}

.intro-offset {
    display: flex;
    padding: 100px 5% 80px;
    gap: 60px;
    align-items: center;
}

.intro-narrow {
    flex: 0 0 40%;
    padding-right: 40px;
}

.intro-narrow h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-wide-image {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.intro-wide-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: #d0d7e0;
}

.services-asymmetric {
    padding: 80px 5% 100px;
    background-color: var(--bg-light);
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 60px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.services-header-offset p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.large-card {
    flex: 0 0 calc(50% - 15px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d0d7e0;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 16px 24px;
}

.service-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: var(--secondary-color);
}

.form-section-offset {
    padding: 80px 5% 100px;
    background-color: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 10%;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 32px;
}

.form-intro h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-intro p {
    font-size: 16px;
    color: var(--text-light);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.selected-service-display {
    padding: 16px;
    background-color: #e8f4f8;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    margin: 10px 0;
}

.cta-submit {
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 10px;
}

.cta-submit:hover {
    background-color: #d67019;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.trust-content-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 0 0 50%;
}

.trust-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
}

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

.trust-list li {
    padding: 14px 0 14px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: #d0d7e0;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fef9f3;
    border-top: 3px solid var(--accent-color);
}

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

.disclaimer-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.disclaimer-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.main-footer {
    background-color: var(--text-dark);
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5f72;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px 5%;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #8fb4d6;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 5% 80px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 10px;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 1;
}

.service-price-detail {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: #d0d7e0;
}

.cta-section {
    padding: 80px 5%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #e3e9f0;
    margin-bottom: 32px;
}

.cta-button-alt {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s;
}

.cta-button-alt:hover {
    transform: translateY(-2px);
}

.about-story {
    padding: 80px 5% 60px;
}

.story-content-asymmetric {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.story-text-main {
    flex: 0 0 55%;
}

.story-text-main h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.story-text-main p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-offset {
    flex: 1;
    margin-top: 60px;
}

.story-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    background-color: #d0d7e0;
}

.values-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 0 0 calc(50% - 15px);
    padding: 36px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 5%;
}

.expertise-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-image {
    flex: 0 0 45%;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: #d0d7e0;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.expertise-highlights {
    list-style: none;
    margin-top: 28px;
}

.expertise-highlights li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.expertise-highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.approach-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.approach-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-step {
    flex: 0 0 calc(50% - 15px);
    padding: 36px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e3e9f0;
    position: absolute;
    top: 20px;
    right: 30px;
}

.approach-step h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.approach-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 5%;
}

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

.commitment-content-centered h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.commitment-content-centered p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-button-centered {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 24px;
    transition: transform 0.3s;
}

.cta-button-centered:hover {
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 60px 5% 80px;
}

.contact-layout-asymmetric {
    display: flex;
    gap: 60px;
}

.contact-main-info {
    flex: 0 0 55%;
}

.contact-main-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-main-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-detail-block {
    margin-bottom: 32px;
}

.contact-detail-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail-block p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.email-text {
    color: var(--text-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-row .time {
    color: var(--text-light);
}

.contact-note {
    margin-top: 32px;
    padding: 20px;
    background-color: #e8f4f8;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-image-side {
    flex: 1;
}

.contact-image-side img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: #d0d7e0;
}

.contact-cta-box {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-cta-box p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-button-contact {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s;
}

.cta-button-contact:hover {
    transform: translateY(-2px);
}

.access-section {
    padding: 60px 5% 80px;
    background-color: var(--bg-light);
}

.access-content h2 {
    font-size: 34px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.access-info {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.access-method {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.access-method h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.access-method p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 5% 80px;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 30px 0;
}

.service-selected {
    font-size: 16px;
    padding: 16px;
    background-color: #e8f4f8;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    display: inline-block;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

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

.steps-list {
    list-style: decimal;
    padding-left: 30px;
}

.steps-list li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 14px;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cta-button-thanks {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s;
}

.cta-button-thanks:hover {
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s;
}

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

.contact-reminder {
    padding: 50px 5%;
    background-color: var(--bg-light);
}

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

.contact-reminder-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-reminder-content p {
    font-size: 16px;
    color: var(--text-dark);
}

.legal-page {
    padding: 60px 5% 80px;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.legal-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-content-left {
        flex: 1;
        padding: 20px 0;
    }

    .hero-content-left h1 {
        font-size: 42px;
    }

    .hero-image-offset {
        margin-left: 0;
        margin-top: 30px;
    }

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

    .services-grid-irregular {
        padding: 0;
    }

    .service-card,
    .service-card.large-card {
        flex: 0 0 calc(50% - 15px);
    }

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

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .trust-content-split,
    .expertise-split,
    .story-content-asymmetric,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .approach-steps,
    .values-grid,
    .access-info {
        flex-direction: column;
    }

    .value-card,
    .approach-step {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content-left h1 {
        font-size: 34px;
    }

    .service-card,
    .service-card.large-card {
        flex: 0 0 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
        padding: 30px;
    }

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

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }
}