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

:root {
    --primary-green: #2d6a4f;
    --light-green: #52b788;
    --dark-green: #1b4332;
    --cream: #f4f1e8;
    --warm-white: #fefef8;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --border-light: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--warm-white);
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 0.3rem 0.8rem;
    background-color: var(--cream);
    border-radius: 4px;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 50%;
    padding-right: 4rem;
    position: relative;
    z-index: 10;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.hero-content-offset p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 60%;
    height: 75%;
    z-index: 5;
}

.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);
    background-color: var(--cream);
}

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

.cta-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
}

.intro-offset {
    padding: 6rem 5%;
    background-color: var(--cream);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

.services-grid-irregular {
    padding: 7rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header-left {
    margin-bottom: 3rem;
}

.section-header-left h2 {
    font-size: 2.8rem;
    color: var(--dark-green);
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px 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 30px rgba(0, 0, 0, 0.12);
}

.card-large {
    margin-left: 0;
    margin-right: 30%;
}

.card-small-top {
    margin-left: 35%;
    margin-right: 5%;
}

.card-small-bottom {
    margin-left: 5%;
    margin-right: 35%;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.card-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: var(--light-green);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-green);
    transform: translateX(5px);
}

.manifesto-split {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 7rem 5%;
    background-color: var(--warm-white);
}

.manifesto-text {
    flex: 1;
}

.manifesto-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.manifesto-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.manifesto-image {
    flex: 1;
}

.manifesto-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--cream);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 1rem;
}

.link-arrow::after {
    content: '→';
}

.benefits-stacked {
    padding: 6rem 5%;
    background-color: var(--cream);
}

.benefit-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.benefit-overlap-left {
    margin-right: 20%;
}

.benefit-overlap-right {
    margin-left: 20%;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-green);
    opacity: 0.3;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark-green);
}

.benefit-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.form-section-diagonal {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    position: relative;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    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(--primary-green);
}

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

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

.testimonials-offset {
    padding: 7rem 5%;
    background-color: var(--warm-white);
}

.testimonials-offset h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-green);
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid var(--light-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-green);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.cta-sticky-bottom {
    padding: 2rem 5%;
    background-color: var(--primary-green);
    position: sticky;
    bottom: 0;
    z-index: 100;
}

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

.cta-content span {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.btn-cta-inline {
    padding: 0.9rem 2rem;
    background-color: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-inline:hover {
    background-color: var(--cream);
    transform: scale(1.05);
}

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

.footer-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(27, 67, 50, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    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: 2rem;
}

.cookie-content p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--light-green);
    color: white;
}

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

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

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

.page-header-offset {
    margin-top: 120px;
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--cream);
}

.page-header-offset h1 {
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.page-header-offset p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.about-story {
    padding: 5rem 5%;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.story-reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--cream);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.team-values {
    padding: 5rem 5%;
    background-color: var(--cream);
}

.team-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-green);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.team-expertise {
    padding: 5rem 5%;
}

.team-expertise h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-green);
}

.expertise-list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-item {
    text-align: center;
    max-width: 200px;
}

.expertise-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.expertise-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.about-cta {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--primary-green);
}

.about-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

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

.services-full {
    padding: 4rem 5%;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--cream);
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

.service-pricing {
    background-color: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.service-pricing p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.services-cta-section {
    padding: 5rem 5%;
    background-color: var(--cream);
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.3rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.services-cta-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-green);
    text-decoration: none;
    border: 2px solid var(--primary-green);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
}

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

.contact-info-block h2 {
    font-size: 2.3rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--cream);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-overlay p {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.7;
}

.contact-additional {
    padding: 5rem 5%;
    background-color: var(--cream);
}

.contact-additional h2 {
    font-size: 2.3rem;
    color: var(--dark-green);
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.legal-page {
    margin-top: 100px;
    padding: 4rem 5%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

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

.legal-content a:hover {
    color: var(--dark-green);
}

.thanks-section {
    margin-top: 100px;
    padding: 5rem 5%;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.thanks-extra {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-extra h2 {
    font-size: 2.3rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--light-green);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        padding: 1rem 3%;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 3%;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .hero-content-offset p {
        font-size: 1.1rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
    }

    .card-large,
    .card-small-top,
    .card-small-bottom {
        margin-left: 0;
        margin-right: 0;
    }

    .manifesto-split,
    .story-block,
    .service-detail,
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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