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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 60px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(44, 62, 80, 0.2);
}

.trust-block-offset {
    display: flex;
    align-items: center;
    padding: 100px 6%;
    gap: 80px;
    background-color: #fff;
}

.trust-image {
    flex: 0 0 420px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-asymmetric {
    padding: 100px 6%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-intro-narrow {
    max-width: 640px;
    margin-bottom: 60px;
}

.section-intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 24px 16px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 24px 20px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

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

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

.service-card-2 {
    margin-top: 40px;
}

.service-card-3 {
    margin-top: 20px;
}

.service-card-4 {
    margin-top: 60px;
}

.service-card-5 {
    margin-top: 30px;
    flex: 0 0 100%;
}

.form-section-split {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    background-color: #ffffff;
    align-items: flex-start;
}

.form-intro {
    flex: 0 0 380px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.benefits-irregular {
    padding: 100px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-irregular h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 0 0 calc(50% - 20px);
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-item:nth-child(2) {
    margin-top: 40px;
}

.benefit-item:nth-child(3) {
    margin-top: -20px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-bottom-offset {
    padding: 80px 6%;
    background-color: #2c3e50;
    text-align: left;
    max-width: 720px;
    margin: 60px 6% 60px auto;
    border-radius: 8px;
}

.cta-bottom-offset h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-bottom-offset p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 6% 24px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 24px;
    background-color: #242424;
    border-radius: 6px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2c2c2c;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    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: 32px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.about-hero-offset {
    padding: 80px 6%;
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-text-block {
    flex: 1;
    max-width: 600px;
}

.about-text-block h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.about-text-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
}

.about-hero-offset img {
    flex: 1;
    max-width: 580px;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.story-section {
    padding: 100px 6%;
    background-color: #ffffff;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-content-narrow {
    flex: 1;
    max-width: 600px;
}

.story-content-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.story-image-offset {
    flex: 0 0 420px;
    margin-top: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-irregular {
    padding: 100px 6%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.values-irregular h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item:nth-child(1) {
    margin-top: 0;
}

.value-item:nth-child(2) {
    margin-top: 40px;
}

.value-item:nth-child(3) {
    margin-top: 20px;
}

.value-item:nth-child(4) {
    margin-top: 60px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section-offset {
    padding: 100px 6%;
    background-color: #ffffff;
}

.team-section-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 720px;
    margin-bottom: 48px;
}

.team-image-container {
    max-width: 900px;
    margin-left: 10%;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cta-about {
    padding: 80px 6%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 28px;
}

.services-hero {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.services-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    max-width: 720px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 60px 6%;
    background-color: #ffffff;
}

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

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

.service-detail-image {
    flex: 0 0 480px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-price-block {
    margin: 28px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 15px;
    color: #5a6c7d;
    margin-right: 12px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.services-process {
    padding: 100px 6%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-process h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-services {
    padding: 80px 6%;
    background-color: #2c3e50;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-services p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 28px;
}

.contact-hero {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-hero p {
    font-size: 19px;
    color: #5a6c7d;
}

.contact-info-section {
    padding: 100px 6%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background-color: #ffffff;
}

.contact-details-offset {
    flex: 1;
    max-width: 540px;
}

.contact-details-offset h2 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 36px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-details-offset h2:first-of-type {
    margin-top: 0;
}

.contact-item {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-image-offset {
    flex: 0 0 460px;
    margin-top: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-map-placeholder {
    padding: 60px 6%;
    background-color: #f8f9fa;
}

.map-note {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.map-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 6%;
    display: flex;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 70vh;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    padding-top: 8px;
}

.thanks-cta {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 36px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-image {
    flex: 0 0 460px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-page {
    padding: 60px 6%;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

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

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

    .hero-offset {
        flex-direction: column;
        padding: 40px 4%;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-image-right {
        margin-left: 0;
    }

    .trust-block-offset {
        flex-direction: column;
        padding: 60px 4%;
    }

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

    .service-cards-irregular {
        flex-direction: column;
    }

    .service-card {
        flex: 1;
        margin-top: 0 !important;
    }

    .form-section-split {
        flex-direction: column;
        padding: 60px 4%;
    }

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

    .benefits-grid {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1;
        margin-top: 0 !important;
    }

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

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

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

    .about-hero-offset img {
        max-width: 100%;
    }

    .story-section {
        flex-direction: column;
    }

    .story-image-offset {
        flex: 1;
        width: 100%;
        margin-top: 40px;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1;
        margin-top: 0 !important;
    }

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

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

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

    .process-steps {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .contact-image-offset {
        flex: 1;
        width: 100%;
        margin-top: 40px;
    }

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

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

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