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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #6ba83d;
    --light-green: #e8f3dc;
    --dark-bg: #1a2912;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #fafafa;
    --bg-cream: #f5f2ed;
    --border-color: #d4d4d4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

.ad-disclosure {
    background: var(--dark-bg);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 7%;
    background: white;
    position: sticky;
    top: 36px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 7%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 60%);
    position: relative;
}

.hero-content-block {
    flex: 1;
    max-width: 580px;
    z-index: 2;
    transform: translateX(-30px);
}

.hero-content-block h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content-block p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.65;
}

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

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

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 48%;
    max-width: 650px;
    z-index: 1;
}

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

.intro-staggered {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 7%;
    background: white;
}

.intro-text-left {
    flex: 1.2;
    padding-right: 40px;
}

.intro-text-left h2 {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.25;
}

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

.intro-image-right {
    flex: 1;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-asymmetric {
    padding: 120px 7%;
    background: var(--light-green);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 60px;
}

.section-header-offset h2 {
    font-size: 44px;
    color: var(--primary-green);
    margin-bottom: 18px;
    font-weight: 800;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: flex-start;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-large {
    flex: 1 1 calc(60% - 20px);
    min-width: 400px;
}

.service-medium {
    flex: 1 1 calc(38% - 20px);
    min-width: 320px;
}

.service-small {
    flex: 1 1 calc(48% - 20px);
    min-width: 300px;
}

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

.service-card h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin: 25px 30px 15px;
    font-weight: 700;
}

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

.price {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-green);
    margin: 15px 30px;
}

.btn-select-service {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 14px 28px;
    margin: 0 30px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-block-overlap {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 90px 7%;
    background: white;
    position: relative;
}

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

.trust-content h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

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

.trust-image-offset {
    flex: 1;
    transform: translateY(30px);
}

.trust-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.form-section-stacked {
    padding: 100px 7%;
    background: var(--bg-cream);
}

.form-container-offset {
    max-width: 650px;
    margin-left: 10%;
    background: white;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.form-container-offset h2 {
    font-size: 34px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    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: var(--accent-green);
}

.btn-submit {
    background: var(--secondary-green);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.values-asymmetric {
    display: flex;
    align-items: center;
    gap: 90px;
    padding: 100px 7%;
    background: white;
}

.values-text-block {
    flex: 1.3;
}

.values-text-block h2 {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.values-list li {
    font-size: 17px;
    color: var(--text-light);
    padding: 18px 0;
    padding-left: 35px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 20px;
}

.values-image-float {
    flex: 1;
    transform: rotate(-2deg);
}

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

.footer-irregular {
    background: var(--dark-bg);
    color: white;
    padding: 70px 7% 30px;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: var(--accent-green);
}

.footer-column p {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    color: var(--accent-green);
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 25px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 41, 18, 0.97);
    backdrop-filter: blur(10px);
    padding: 25px 7%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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 {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

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

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

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

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

.btn-cookie-accept:hover {
    background: var(--secondary-green);
}

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

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

.about-hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 90px 7%;
    background: var(--bg-cream);
    min-height: 70vh;
}

.about-hero-text {
    flex: 1;
    max-width: 550px;
}

.about-hero-text h1 {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-visual {
    flex: 1;
}

.about-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.story-block-offset {
    padding: 100px 7%;
    background: white;
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.story-content h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.team-asymmetric {
    padding: 100px 7%;
    background: var(--light-green);
}

.team-asymmetric h2 {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.team-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-block {
    background: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.team-large {
    flex: 1 1 calc(55% - 20px);
    min-width: 350px;
}

.team-medium {
    flex: 1 1 calc(43% - 20px);
    min-width: 300px;
}

.team-small {
    flex: 1 1 calc(48% - 20px);
    min-width: 280px;
}

.team-block h3 {
    font-size: 22px;
    color: var(--secondary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.approach-split {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 7%;
    background: white;
}

.approach-image {
    flex: 1;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 34px;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.values-full {
    padding: 100px 7%;
    background: var(--bg-cream);
}

.values-full h2 {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.commitments-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.commitment-item {
    flex: 1 1 calc(48% - 20px);
    min-width: 320px;
    background: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.commitment-item h3 {
    font-size: 22px;
    color: var(--secondary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.cta-offset {
    padding: 100px 7%;
    background: white;
}

.cta-content {
    max-width: 700px;
    margin-left: 12%;
    text-align: left;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

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

.btn-cta-large {
    display: inline-block;
    background: var(--secondary-green);
    color: white;
    padding: 18px 42px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

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

.services-hero-offset {
    padding: 100px 7%;
    background: linear-gradient(135deg, var(--light-green) 0%, white 70%);
    text-align: center;
}

.services-hero-offset h1 {
    font-size: 46px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.services-hero-offset p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-asymmetric {
    padding: 60px 7%;
    background: white;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 80px;
    padding: 60px 0;
}

.service-block-left {
    flex-direction: row;
}

.service-block-right {
    flex-direction: row-reverse;
}

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-detail-content h3 {
    font-size: 20px;
    color: var(--secondary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-green);
}

.services-cta-full {
    padding: 80px 7%;
    background: var(--light-green);
    text-align: center;
}

.services-cta-full h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.services-cta-full p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-services {
    display: inline-block;
    background: var(--secondary-green);
    color: white;
    padding: 18px 42px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

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

.contact-hero-split {
    padding: 100px 7%;
    background: var(--bg-cream);
}

.contact-intro h1 {
    font-size: 46px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 700px;
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
    line-height: 1.7;
}

.contact-info-asymmetric {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 90px 7%;
    background: white;
}

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

.contact-details-block h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    color: var(--secondary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

.contact-visual {
    flex: 1;
}

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

.location-context {
    padding: 80px 7%;
    background: var(--light-green);
    max-width: 900px;
    margin: 0 auto;
}

.location-context h2 {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.location-context p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.contact-approach {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 7%;
    background: white;
}

.approach-block-left {
    flex: 1;
}

.approach-block-left h2 {
    font-size: 34px;
    color: var(--primary-green);
    margin-bottom: 35px;
    font-weight: 700;
}

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

.step-item h3 {
    font-size: 20px;
    color: var(--secondary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

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

.approach-visual-right {
    flex: 1;
}

.approach-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-expectations {
    padding: 100px 7%;
    background: var(--bg-cream);
}

.contact-expectations h2 {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.expectation-item {
    flex: 1 1 calc(48% - 20px);
    min-width: 300px;
    background: white;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.expectation-item h3 {
    font-size: 20px;
    color: var(--secondary-green);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.contact-final-cta {
    padding: 100px 7%;
    background: white;
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-final-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-secondary-text {
    font-size: 15px;
    color: #888;
}

.thanks-hero {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    padding: 100px 7%;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--light-green) 0%, white 60%);
}

.thanks-content {
    flex: 1.3;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 44px;
    color: var(--primary-green);
    margin-bottom: 18px;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-service-confirmation {
    background: white;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.thanks-next-steps h2,
.thanks-additional-info h2 {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.timeline-step {
    padding-left: 30px;
    position: relative;
}

.timeline-step:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
}

.timeline-step h3 {
    font-size: 18px;
    color: var(--secondary-green);
    margin-bottom: 8px;
    font-weight: 700;
}

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

.thanks-links {
    list-style: none;
    margin-top: 20px;
}

.thanks-links li {
    margin-bottom: 12px;
}

.thanks-links a {
    color: var(--secondary-green);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.thanks-links a:hover {
    color: var(--accent-green);
}

.thanks-contact-reminder {
    background: var(--bg-cream);
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.thanks-contact-reminder p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-visual {
    flex: 1;
    transform: translateY(40px);
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 7%;
    background: white;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 28px;
    color: var(--secondary-green);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-green);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

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

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

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

    .hero-content-block {
        transform: none;
        max-width: 100%;
    }

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

    .intro-staggered,
    .trust-block-overlap,
    .values-asymmetric,
    .about-hero-split,
    .approach-split,
    .service-detail-block,
    .contact-info-asymmetric,
    .contact-approach,
    .thanks-hero {
        flex-direction: column;
        gap: 40px;
    }

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 20px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}