* {
    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: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4e4c1;
    color: #5a4a2f;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #d4c4a1;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.header-right a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 60px 8% 60px 8%;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8ece9;
}

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

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

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

.value-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #ffffff;
}

.value-image {
    flex: 1;
    padding-right: 60px;
    background-color: #e8ece9;
}

.value-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.value-content {
    flex: 1;
    padding-left: 40px;
}

.value-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-content p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-showcase {
    padding: 80px 5%;
    background-color: #f4f6f5;
}

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

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

.services-intro p {
    font-size: 18px;
    color: #5a5a5a;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    align-items: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8ece9;
}

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

.service-details {
    flex: 1;
    padding: 40px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-details p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details .price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
    padding: 8px 16px;
    background-color: #e8f5ec;
    border-radius: 4px;
}

.form-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 28px;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    font-size: 16px;
    color: #4a4a4a;
    padding: 12px 0 12px 32px;
    position: relative;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 18px;
}

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 6px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a30;
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #f4f6f5;
}

.trust-content {
    flex: 1;
    padding-right: 50px;
}

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

.trust-content p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 32px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 16px;
    color: #5a5a5a;
    margin: 0;
}

.trust-visual {
    flex: 1;
    background-color: #e8ece9;
}

.trust-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.footer {
    background-color: #1a2f23;
    color: #d4d4d4;
    padding: 60px 5% 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #b4b4b4;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid #2a3f33;
    border-bottom: 1px solid #2a3f33;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #a4a4a4;
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #8a8a8a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px 5%;
    box-shadow: 0 -4px 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: 1400px;
    margin: 0 auto;
}

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

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

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

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

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

.btn-accept:hover {
    background-color: #234a30;
}

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

.btn-reject:hover {
    background-color: #3c3c3c;
}

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background-color: #f4f6f5;
}

.page-hero-content {
    flex: 1;
    padding: 60px 8%;
    background-color: #ffffff;
}

.page-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.7;
}

.page-hero-image {
    flex: 1;
    background-color: #e8ece9;
}

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

.about-story-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #ffffff;
}

.story-image {
    flex: 1;
    padding-right: 50px;
    background-color: #e8ece9;
}

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

.story-content {
    flex: 1;
    padding-left: 40px;
}

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

.story-content p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 18px;
}

.approach-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #f4f6f5;
}

.approach-content {
    flex: 1;
    padding-right: 50px;
}

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

.approach-content p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 18px;
}

.approach-image {
    flex: 1;
    background-color: #e8ece9;
}

.approach-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.expertise-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.expertise-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

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

.expertise-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 12px;
}

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

.values-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #f4f6f5;
}

.values-image {
    flex: 1;
    padding-right: 50px;
    background-color: #e8ece9;
}

.values-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.values-content {
    flex: 1;
    padding-left: 40px;
}

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-list strong {
    color: #2d5a3d;
    font-weight: 700;
}

.page-intro-split {
    padding: 60px 8%;
    background-color: #f4f6f5;
    text-align: center;
}

.intro-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.intro-content p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 5%;
    background-color: #ffffff;
}

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

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

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

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

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 16px;
    color: #5a5a5a;
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-size: 20px;
    font-weight: 700;
}

.service-note {
    font-size: 15px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
    background-color: #e8ece9;
}

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

.pricing-notes-split {
    display: flex;
    gap: 60px;
    padding: 60px 8%;
    background-color: #f4f6f5;
}

.pricing-info {
    flex: 1.5;
}

.pricing-info h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pricing-info p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.pricing-cta {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-cta h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pricing-cta p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #234a30;
}

.contact-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background-color: #f4f6f5;
}

.contact-hero-content {
    flex: 1;
    padding: 60px 8%;
    background-color: #ffffff;
}

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

.contact-hero-content p {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-hero-image {
    flex: 1;
    background-color: #e8ece9;
}

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

.contact-details-split {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 8px;
}

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

.contact-note {
    font-size: 14px;
    color: #8a8a8a;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background-color: #e8ece9;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.contact-process-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #f4f6f5;
}

.process-visual {
    flex: 1;
    padding-right: 50px;
    background-color: #e8ece9;
}

.process-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.process-content {
    flex: 1;
    padding-left: 40px;
}

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

.process-steps {
    padding-left: 20px;
}

.process-steps li {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-steps strong {
    color: #2d5a3d;
    font-weight: 700;
}

.contact-areas {
    padding: 80px 5%;
    background-color: #ffffff;
}

.contact-areas h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

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

.area-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 6px;
}

.area-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 12px;
}

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

.contact-faq-split {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: #f4f6f5;
}

.faq-content {
    flex: 1.2;
}

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

.faq-item {
    margin-bottom: 28px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 8px;
}

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

.faq-image {
    flex: 1;
    background-color: #e8ece9;
}

.faq-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.thanks-container {
    min-height: 70vh;
    padding: 80px 5%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

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

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

.thanks-service-info {
    background-color: #e8f5ec;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #2d5a3d;
    margin: 0;
}

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

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

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234a30;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

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

.thanks-contact {
    border-top: 1px solid #e0e0e0;
    padding-top: 28px;
}

.thanks-contact p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-container h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container li {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.legal-container a:hover {
    color: #234a30;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #f8f9fa;
}

.gdpr-table th,
.cookies-table th {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 14px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #5a5a5a;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 16px;
    }

    .header-right {
        gap: 20px;
    }

    .hero-split,
    .value-split,
    .trust-split,
    .about-story-split,
    .approach-split,
    .values-split,
    .contact-details-split,
    .contact-process-split,
    .contact-faq-split,
    .pricing-notes-split,
    .form-container-split,
    .page-hero-split,
    .contact-hero-split {
        flex-direction: column;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-content h1,
    .contact-hero-content h1 {
        font-size: 32px;
    }

    .value-content,
    .trust-content,
    .story-content,
    .approach-content,
    .values-content,
    .process-content {
        padding: 0;
    }

    .value-image,
    .story-image,
    .process-visual {
        padding: 0;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .expertise-grid-split,
    .areas-grid-split {
        flex-direction: column;
    }

    .thanks-content {
        padding: 40px 24px;
    }

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