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

:root {
    --primary-color: #1a3f5c;
    --secondary-color: #2d6a8e;
    --accent-color: #c49b63;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

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(--bg-white);
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    gap: 30px;
}

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

.header-right a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--bg-white);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #b38a54;
}

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

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

.cta-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-reverse {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.intro-text {
    flex: 1;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.services-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--border-color);
}

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

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    padding: 0 20px;
    margin-bottom: 16px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-builder {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.trust-content {
    flex: 1.5;
}

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

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

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

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

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

.process-flow h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 60px;
    min-height: 400px;
    align-items: center;
}

.process-step.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-white);
}

.step-visual {
    flex: 1;
    background-color: var(--border-color);
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content {
    flex: 1;
    padding: 40px 5%;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.testimonials-offset {
    padding: 80px 5%;
}

.testimonials-offset h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card.offset-left {
    margin-right: 15%;
}

.testimonial-card.offset-right {
    margin-left: 15%;
}

.testimonial-card.offset-center {
    margin: 0 auto;
    max-width: 700px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-section-split {
    display: flex;
    padding: 80px 5%;
    background-color: var(--primary-color);
    gap: 60px;
    align-items: center;
}

.cta-text {
    flex: 1;
}

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

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-action {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.disclaimer-section {
    padding: 40px 5%;
    background-color: var(--bg-light);
    border-top: 2px solid var(--border-color);
}

.disclaimer-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.footer-split {
    display: flex;
    padding: 60px 5% 40px;
    background-color: var(--text-dark);
    color: var(--bg-white);
    gap: 60px;
}

.footer-left {
    flex: 1.5;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

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

.footer-center,
.footer-right {
    flex: 1;
}

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

.footer-center a,
.footer-right a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover {
    color: var(--accent-color);
}

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

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

.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);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.service-display {
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--secondary-color);
}

.page-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.page-hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.story-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.story-image {
    flex: 1;
    background-color: var(--border-color);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    width: calc(50% - 20px);
    min-width: 300px;
}

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

.value-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.approach-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
}

.approach-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.approach-text {
    flex: 1;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

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

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

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

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

.cta-full h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-light);
}

.page-hero-centered {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--bg-light);
}

.page-hero-centered h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero-centered p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-bottom: 24px;
    margin-left: 20px;
}

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

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

.service-process h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.timeline-step {
    width: calc(50% - 20px);
    min-width: 300px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-split {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: var(--border-color);
}

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

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

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

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

.location-info h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.location-benefits {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-item {
    width: calc(33.333% - 27px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.thanks-hero {
    padding: 80px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.thanks-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-details {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
}

.thanks-info {
    flex: 1.5;
}

.thanks-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 24px;
}

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

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.thanks-visual {
    flex: 1;
    background-color: var(--border-color);
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-reference {
    padding: 60px 5%;
    background-color: var(--bg-light);
}

.service-reference h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.service-recap {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.service-recap p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.additional-resources {
    padding: 80px 5%;
}

.additional-resources h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.resource-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-card {
    width: calc(33.333% - 27px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.resource-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: var(--primary-color);
}

.legal-page {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--secondary-color);
}

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

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.legal-page strong {
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .hero-split,
    .intro-reverse,
    .trust-builder,
    .process-step,
    .cta-section-split,
    .page-hero-split,
    .story-split,
    .approach-reverse,
    .service-detail,
    .contact-split,
    .thanks-details {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }

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

    .cta-action {
        flex-direction: column;
    }

    .value-item,
    .timeline-step,
    .benefit-item,
    .resource-card {
        width: 100%;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 40px;
    }
}