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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #8B6F47;
    --accent-color: #D4A574;
    --dark-text: #1A1A1A;
    --light-text: #5A5A5A;
    --bg-light: #F8F7F4;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    position: relative;
    padding: 60px 80px 60px 120px;
    align-items: center;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-title-large {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

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

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #234a32;
    transform: translateY(-2px);
}

.intro-offset {
    display: flex;
    padding: 100px 120px 100px 180px;
    gap: 80px;
    background-color: var(--bg-light);
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-text);
}

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

.intro-image-sidebar {
    flex: 1;
    margin-top: 60px;
}

.intro-image-sidebar img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--border-color);
}

.services-grid-asymmetric {
    padding: 120px 80px;
    background-color: var(--bg-white);
}

.section-header-offset {
    margin-left: 120px;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

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

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

.service-card {
    flex-basis: calc(50% - 20px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.card-offset-left {
    margin-left: 0;
}

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

.card-offset-center {
    margin-left: auto;
    margin-right: auto;
}

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

.service-card h3 {
    font-size: 26px;
    margin: 25px 30px 15px;
    color: var(--dark-text);
}

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

.price-tag {
    margin: 0 30px 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.select-service-btn {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section-diagonal {
    display: flex;
    padding: 100px 80px;
    background-color: var(--bg-light);
    position: relative;
    gap: 60px;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    margin-left: 80px;
    margin-top: 40px;
}

.form-container-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.form-container-offset p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.asymmetric-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-display p {
    margin: 5px 0;
    font-size: 16px;
}

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

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

.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;
    transition: border-color 0.3s;
}

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

.cta-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-image-overlap {
    flex: 1;
    margin-top: -40px;
}

.form-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--border-color);
}

.trust-section-stacked {
    padding: 100px 120px;
    background-color: var(--bg-white);
}

.trust-section-stacked h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--dark-text);
}

.trust-blocks-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.trust-block {
    flex-basis: calc(33.333% - 34px);
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.trust-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.footer-asymmetric {
    background-color: var(--dark-text);
    color: var(--bg-light);
    padding: 80px 80px 40px;
}

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

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--bg-light);
    margin-bottom: 10px;
}

.footer-block a {
    display: block;
    color: var(--bg-light);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bg-light);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: white;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background-color: #234a32;
    transform: translateY(-2px);
}

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

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

.about-hero-offset {
    display: flex;
    min-height: 80vh;
    padding: 80px 100px 80px 150px;
    align-items: center;
    gap: 80px;
}

.about-content-irregular {
    flex: 1;
    max-width: 550px;
}

.about-content-irregular h1 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.about-intro-large {
    font-size: 22px;
    line-height: 1.5;
    color: var(--light-text);
}

.about-image-diagonal {
    flex: 1;
    margin-top: -60px;
}

.about-image-diagonal img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--border-color);
}

.philosophy-section-stacked {
    display: flex;
    padding: 100px 120px;
    background-color: var(--bg-light);
    gap: 80px;
}

.philosophy-block-left {
    flex: 1;
    padding-right: 40px;
}

.philosophy-block-left h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.philosophy-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.philosophy-image-right {
    flex: 1;
    margin-top: 40px;
}

.philosophy-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--border-color);
}

.team-approach-asymmetric {
    padding: 100px 100px;
    background-color: var(--bg-white);
}

.team-approach-asymmetric h2 {
    font-size: 48px;
    margin-bottom: 70px;
    margin-left: 80px;
    color: var(--dark-text);
}

.approach-blocks-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-block {
    flex-basis: calc(50% - 20px);
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.block-offset-1 {
    margin-left: 0;
}

.block-offset-2 {
    margin-left: 80px;
}

.block-offset-3 {
    margin-left: 40px;
}

.block-offset-4 {
    margin-left: 120px;
}

.approach-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.values-section-diagonal {
    display: flex;
    padding: 100px 80px;
    background-color: var(--bg-light);
    gap: 60px;
    align-items: center;
}

.values-content-offset {
    flex: 1;
    margin-left: 60px;
}

.values-content-offset h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.values-list-irregular {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.values-image-overlap {
    flex: 1;
}

.values-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--border-color);
}

.cta-section-offset {
    padding: 100px 80px;
    text-align: center;
    background-color: var(--bg-white);
}

.cta-section-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.cta-section-offset p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--light-text);
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-large:hover {
    background-color: #234a32;
    transform: translateY(-2px);
}

.services-hero-diagonal {
    padding: 100px 120px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero-diagonal h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

.service-detail-section {
    padding: 80px 100px;
    background-color: var(--bg-white);
}

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

.card-layout-2 {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--border-color);
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 30px;
}

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

.process-section-offset {
    padding: 100px 120px;
    background-color: var(--bg-light);
}

.process-section-offset h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.process-intro {
    text-align: center;
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex-basis: calc(25% - 30px);
    text-align: center;
}

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

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

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

.cta-services-section {
    padding: 100px 80px;
    text-align: center;
    background-color: var(--bg-white);
}

.cta-services-section h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.contact-hero-asymmetric {
    padding: 100px 120px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero-asymmetric h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.contact-intro {
    font-size: 20px;
    color: var(--light-text);
}

.contact-info-section {
    padding: 80px 100px;
    background-color: var(--bg-white);
}

.contact-blocks-irregular {
    display: flex;
    gap: 60px;
}

.contact-block {
    flex: 1;
}

.block-main h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

.note-small {
    font-size: 15px;
    font-style: italic;
}

.block-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--border-color);
}

.approach-contact-section {
    padding: 100px 120px;
    background-color: var(--bg-light);
}

.approach-contact-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-text);
}

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

.approach-item {
    flex-basis: calc(33.333% - 27px);
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 6px;
}

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

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

.faq-section-offset {
    padding: 100px 120px;
    background-color: var(--bg-white);
}

.faq-section-offset h2 {
    font-size: 44px;
    margin-bottom: 60px;
    margin-left: 40px;
    color: var(--dark-text);
}

.faq-list-irregular {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 6px;
    margin-left: 80px;
}

.faq-item:nth-child(even) {
    margin-left: 40px;
    margin-right: 80px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

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

.cta-contact-final {
    padding: 100px 80px;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-contact-final h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

.thanks-section-centered {
    padding: 120px 100px;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content-offset {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content-offset h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.thanks-message-large {
    font-size: 20px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 50px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 50px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.service-confirmation p {
    font-size: 18px;
    color: var(--dark-text);
    margin: 8px 0;
}

.next-steps-block {
    margin-bottom: 60px;
    text-align: left;
}

.next-steps-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-text);
}

.steps-list-offset {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

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

.thanks-cta-section {
    margin-top: 60px;
}

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

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--dark-text);
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

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

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

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

@media (max-width: 1200px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-image-overlap {
        position: static;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

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

    .service-card {
        flex-basis: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 42px;
    }

    .intro-offset,
    .philosophy-section-stacked,
    .values-section-diagonal,
    .form-section-diagonal,
    .service-detail-card {
        flex-direction: column;
        padding: 60px 30px;
    }

    .trust-blocks-irregular,
    .approach-blocks-irregular,
    .process-steps-irregular,
    .approach-grid-offset {
        flex-direction: column;
    }

    .trust-block,
    .approach-block,
    .process-step,
    .approach-item {
        flex-basis: 100%;
        margin-left: 0 !important;
    }

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