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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-sage: #7a9b76;
    --light-cream: #f5f2e8;
    --warm-white: #fdfbf7;
    --dark-earth: #1a1a1a;
    --soft-grey: #666666;
    --border-grey: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--dark-earth);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-green);
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

section {
    padding: clamp(3rem, 8vw, 6rem) 5%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-earth);
    color: var(--warm-white);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary-green);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-earth);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    background: var(--warm-white);
    padding: 4rem;
    margin-left: 5%;
    margin-top: 10vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--soft-grey);
}

.cta-primary {
    background: var(--primary-green);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.intro-overlap {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: -5rem;
    position: relative;
    z-index: 5;
}

.intro-card-left {
    flex: 1;
    background: var(--light-cream);
    padding: 3rem;
    border-left: 6px solid var(--secondary-green);
}

.intro-visual-right {
    flex: 1;
    position: relative;
}

.intro-visual-right img {
    width: 100%;
    border-radius: 8px;
}

.stat-overlay {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--primary-green);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

.approach-staggered {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--warm-white);
}

.approach-block {
    flex: 1.2;
}

.approach-content {
    max-width: 600px;
}

.approach-image-offset {
    flex: 1;
    margin-top: -4rem;
}

.approach-image-offset img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-irregular {
    background: var(--light-cream);
}

.section-header-asymmetric {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-header-asymmetric h2 {
    margin-bottom: 1rem;
}

.section-header-asymmetric p {
    font-size: 1.2rem;
    color: var(--soft-grey);
}

.service-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-large {
    flex: 1 1 calc(55% - 1rem);
}

.card-medium {
    flex: 1 1 calc(45% - 1rem);
}

.card-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--soft-grey);
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: var(--accent-sage);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-diagonal {
    display: flex;
    gap: 5rem;
    align-items: center;
    background: var(--primary-green);
    color: white;
    transform: skewY(-2deg);
    padding: 6rem 5%;
    margin: 4rem 0;
}

.trust-diagonal > * {
    transform: skewY(2deg);
}

.trust-content-left {
    flex: 1.5;
}

.trust-content-left h2 {
    color: white;
}

.trust-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.link-arrow {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.trust-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-block {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-block span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-block p {
    font-size: 1rem;
    margin: 0;
}

.testimonial-offset {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.testimonial-card {
    flex: 1.2;
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 8px;
}

.process-layered h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-wide {
    flex: 1 1 calc(48% - 1rem);
}

.step-narrow {
    flex: 1 1 calc(38% - 1rem);
}

.step-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-sage);
    display: block;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--soft-grey);
}

.form-section-offset {
    display: flex;
    gap: 4rem;
    background: var(--light-cream);
    align-items: flex-start;
}

.form-intro {
    flex: 0.8;
}

.contact-form-asymmetric {
    flex: 1.2;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-earth);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-grey);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--accent-sage);
    color: white;
    padding: 4rem 5%;
    border-radius: 12px;
    margin: 4rem 5%;
}

.cta-left-block h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-right-action {
    text-align: center;
}

.btn-large {
    background: white;
    color: var(--primary-green);
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-asymmetric {
    background: var(--dark-earth);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-primary {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    background: var(--secondary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.4);
    transition: all 0.3s ease;
    display: block;
}

.sticky-cta a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(45, 80, 22, 0.5);
}

.page-hero-simple {
    text-align: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-white) 100%);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--soft-grey);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-asymmetric h2 {
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-green);
}

.value-block h3 {
    margin-bottom: 1rem;
}

.value-block p {
    color: var(--soft-grey);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(48% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.member-role {
    color: var(--accent-sage);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.team-member h3 {
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--soft-grey);
}

.approach-detail {
    background: var(--light-cream);
}

.approach-detail h2 {
    margin-bottom: 3rem;
}

.method-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-step {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
}

.method-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.method-step p {
    color: var(--soft-grey);
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    padding: 5rem 5%;
    background: var(--warm-white);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--soft-grey);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-detail-header {
    background: var(--light-cream);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon-large {
    font-size: 4rem;
}

.service-title-block h2 {
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.75rem;
    color: var(--soft-grey);
    line-height: 1.7;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--soft-grey);
    line-height: 1.8;
}

.cta-services {
    text-align: center;
    background: var(--accent-sage);
    color: white;
    padding: 4rem 5%;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-services h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-services p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.info-block p {
    line-height: 1.8;
    color: var(--soft-grey);
}

.info-block a {
    font-weight: 500;
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
    color: var(--accent-sage);
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-caption {
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
    color: var(--soft-grey);
}

.contact-note {
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 8px;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.contact-note h2 {
    margin-bottom: 1.5rem;
}

.contact-note ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.contact-note li {
    margin-bottom: 0.75rem;
    color: var(--soft-grey);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 6rem;
}

.thanks-content {
    flex: 1.3;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--soft-grey);
    margin-bottom: 2rem;
}

.thanks-service-note {
    background: var(--light-cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--secondary-green);
}

.thanks-next-steps h2 {
    margin-bottom: 2rem;
}

.step-list {
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    padding-top: 0.5rem;
    color: var(--soft-grey);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 6rem;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--soft-grey);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-green);
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--soft-grey);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--soft-grey);
}

.legal-content a {
    font-weight: 500;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th {
    background: var(--primary-green);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-grey);
    color: var(--soft-grey);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

#show-cookie-settings {
    margin: 2rem 0;
}

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

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .hero-text-offset {
        margin: -3rem 5% 0;
        padding: 3rem;
    }

    .intro-overlap,
    .approach-staggered,
    .trust-diagonal,
    .testimonial-offset,
    .story-section,
    .contact-split,
    .thanks-hero,
    .form-section-offset {
        flex-direction: column;
    }

    .trust-diagonal {
        transform: skewY(-1deg);
    }

    .service-grid-offset {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .final-cta-split {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem;
        border-radius: 25px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    section {
        padding: 3rem 5%;
    }

    .process-steps-irregular,
    .values-grid,
    .team-grid,
    .method-content {
        flex-direction: column;
    }

    .process-step,
    .value-block,
    .team-member,
    .method-step {
        flex: 1 1 100%;
    }

    .footer-primary {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }
}