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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.96);
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #3d6548;
}

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a7c59;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #2d3e3a;
}

.hero-visual-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: #c8b8a0;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding: 60px;
    margin-left: 8%;
    background-color: rgba(250, 250, 250, 0.97);
    transform: translateY(40px);
}

.hero-text-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.hero-text-offset p {
    font-size: 19px;
    color: #444;
    line-height: 1.6;
}

.intro-curiosity {
    padding: 100px 60px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.intro-content-wide {
    flex: 1 1 60%;
}

.opening-statement {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.intro-content-wide p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3d3d3d;
}

.intro-visual-small {
    flex: 1 1 35%;
    background-color: #e8dfd1;
    transform: translateY(-30px);
}

.intro-visual-small img {
    width: 100%;
    height: 100%;
}

.problem-insight {
    background-color: #f4f1ed;
    padding: 90px 60px;
}

.insight-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.insight-text {
    flex: 1 1 50%;
    padding-right: 40px;
}

.insight-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3d3d3d;
}

.insight-image-stacked {
    flex: 1 1 45%;
    background-color: #d4c8b6;
}

.insight-image-stacked img {
    width: 100%;
    height: auto;
}

.trust-building {
    padding: 100px 60px;
    background-color: #ffffff;
}

.trust-content-center {
    max-width: 1100px;
    margin: 0 auto;
}

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

.process-cards-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-card {
    padding: 40px;
    background-color: #f9f7f4;
    border-left: 4px solid #4a7c59;
}

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

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

.process-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.process-card p {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 80px 60px;
    background-color: #2d3e3a;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-block {
    padding: 0 40px;
}

.testimonial-block blockquote {
    font-size: 22px;
    font-style: italic;
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-size: 15px;
    color: #b8b8b8;
    font-style: normal;
}

.services-preview {
    padding: 100px 60px;
    background-color: #fafafa;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 10%;
}

.services-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #444;
}

.services-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0d8ca;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #555;
    padding: 0 24px 24px;
    line-height: 1.6;
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3d6548;
}

.benefits-reveal {
    padding: 100px 60px;
    background-color: #ffffff;
}

.benefits-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.benefits-text {
    flex: 1 1 55%;
}

.benefits-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.benefits-list li {
    font-size: 17px;
    padding: 14px 0 14px 30px;
    position: relative;
    color: #3d3d3d;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-size: 24px;
    font-weight: 700;
}

.benefits-visual {
    flex: 1 1 40%;
    background-color: #d8d0c4;
}

.benefits-visual img {
    width: 100%;
    height: auto;
}

.cta-primary {
    padding: 120px 60px;
    background-color: #3a4f4a;
    text-align: center;
}

.cta-content-overlap {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-overlap h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-content-overlap p {
    font-size: 19px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button-large {
    padding: 18px 48px;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #e8e8e8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 50px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #4a7c59;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #3d6548;
}

.urgency-subtle {
    padding: 60px 60px;
    background-color: #f9f7f4;
    text-align: center;
}

.urgency-text p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 70px 60px 30px;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    color: #b0b0b0;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 14px;
    color: #b0b0b0;
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

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

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

.about-hero-offset {
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text-primary {
    flex: 1 1 50%;
}

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

.about-text-primary p {
    font-size: 19px;
    color: #444;
    line-height: 1.6;
}

.about-visual-overlap {
    flex: 1 1 45%;
    background-color: #d8cfc1;
    transform: translateY(30px);
}

.about-visual-overlap img {
    width: 100%;
    height: auto;
}

.about-story {
    padding: 90px 60px;
    background-color: #f4f1ed;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.story-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #3d3d3d;
    line-height: 1.7;
}

.about-philosophy {
    padding: 100px 60px;
    background-color: #ffffff;
}

.philosophy-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.philosophy-text {
    flex: 1 1 55%;
}

.philosophy-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3d3d3d;
    line-height: 1.7;
}

.philosophy-image {
    flex: 1 1 40%;
    background-color: #d8cfc1;
}

.philosophy-image img {
    width: 100%;
    height: auto;
}

.about-process {
    padding: 100px 60px;
    background-color: #f9f7f4;
}

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

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    padding: 30px 40px;
    background-color: #ffffff;
    border-left: 3px solid #4a7c59;
}

.timeline-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.timeline-item p {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 1.7;
}

.about-team {
    padding: 90px 60px;
    background-color: #2d3e3a;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ffffff;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.7;
}

.about-sustainability {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.sustainability-text {
    flex: 1 1 55%;
}

.sustainability-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.sustainability-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3d3d3d;
    line-height: 1.7;
}

.sustainability-visual {
    flex: 1 1 40%;
    background-color: #c8d6c4;
}

.sustainability-visual img {
    width: 100%;
    height: auto;
}

.about-cta {
    padding: 100px 60px;
    background-color: #f4f1ed;
}

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

.cta-centered h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #444;
}

.services-hero {
    padding: 80px 60px 40px;
    background-color: #ffffff;
}

.services-intro-offset {
    max-width: 800px;
    margin-left: 10%;
}

.services-intro-offset h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro-offset p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.services-main {
    padding: 60px 60px 100px;
    background-color: #fafafa;
}

.services-layout-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
}

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

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

.block-center {
    flex-direction: column;
    text-align: center;
}

.block-full {
    flex-direction: row;
}

.service-visual {
    flex: 1 1 45%;
    background-color: #d8cfc1;
}

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

.service-details {
    flex: 1 1 50%;
}

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

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

.service-timeline {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
    margin: 24px 0;
}

.service-cta {
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #3d6548;
}

.services-note {
    padding: 60px;
    background-color: #f4f1ed;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
}

.note-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.note-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #3d3d3d;
    line-height: 1.7;
}

.services-cta {
    padding: 100px 60px;
    background-color: #3a4f4a;
}

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

.cta-wrap h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-wrap p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-hero {
    padding: 80px 60px 40px;
    background-color: #ffffff;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-intro p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.contact-main {
    padding: 60px 60px 100px;
    background-color: #fafafa;
}

.contact-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.contact-info-offset {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 1.7;
}

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

.contact-visual {
    flex: 1 1 45%;
    background-color: #d8cfc1;
    transform: translateY(-40px);
}

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

.contact-directions {
    padding: 60px;
    background-color: #f4f1ed;
}

.directions-content {
    max-width: 900px;
    margin: 0 auto;
}

.directions-content h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.directions-content p {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 60px;
    background-color: #f9f7f4;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.thanks-service-reference {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #4a7c59;
}

.thanks-service-reference p {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-next-steps {
    padding: 80px 60px;
    background-color: #ffffff;
}

.next-steps-content {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    padding: 30px;
    background-color: #f9f7f4;
    text-align: center;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    color: #3d3d3d;
    line-height: 1.6;
}

.thanks-explore {
    padding: 80px 60px;
    background-color: #f4f1ed;
    text-align: center;
}

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

.explore-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 40px;
}

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

.thanks-link {
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #3d6548;
}

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

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #3d3d3d;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #3d3d3d;
    line-height: 1.7;
}

.legal-content a {
    color: #4a7c59;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #3d6548;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f4f1ed;
}

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #d0d0d0;
}

.cookie-table td {
    padding: 12px 14px;
    font-size: 15px;
    color: #3d3d3d;
    border-bottom: 1px solid #e8e8e8;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual-block {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-text-offset {
        margin: 0;
        transform: none;
        padding: 40px;
    }

    .hero-text-offset h1 {
        font-size: 36px;
    }

    .intro-curiosity {
        flex-direction: column;
        padding: 60px 30px;
    }

    .insight-grid-offset,
    .benefits-layout-split,
    .sustainability-split,
    .philosophy-layout,
    .contact-layout-split,
    .about-hero-offset {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-block {
        flex-direction: column !important;
        text-align: center;
    }

    .steps-list {
        flex-direction: column;
    }

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }

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