* {
    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.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #4a7c3e;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #3d6833;
    transform: translateY(-2px);
}

.btn-cookie-alt {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cookie-alt:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-asymmetric {
    background-color: #fff;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a24;
    letter-spacing: -0.5px;
}

.nav-disclaimer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

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

.nav-links a {
    color: #1a1a1a;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #2d5a24;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d5a24;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    position: relative;
    margin: 0 5%;
    gap: 3rem;
}

.hero-text-block {
    flex: 1;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    transform: translateX(-2rem);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 550px;
}

.cta-hero {
    display: inline-block;
    background-color: #4a7c3e;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #3d6833;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74,124,62,0.3);
}

.hero-image-block {
    flex: 1;
    position: relative;
    transform: translateY(-3rem) translateX(1.5rem);
    background-color: #e8f4e6;
}

.hero-image-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.intro-asymmetric {
    display: flex;
    margin: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-content-left {
    flex: 1.2;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateX(1rem);
}

.intro-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content-left p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.intro-image-right {
    flex: 0.8;
    transform: translateY(2rem);
    background-color: #f0f7ee;
}

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

.services-asymmetric {
    margin: 7rem 5%;
    padding: 4rem 0;
}

.services-header-offset {
    margin-bottom: 4rem;
    transform: translateX(3rem);
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card-1 { transform: translateY(-1rem); }
.service-card-2 { transform: translateY(1.5rem); }
.service-card-3 { transform: translateY(-0.5rem); }
.service-card-4 { transform: translateY(2rem); }
.service-card-5 { transform: translateY(-1.5rem); }
.service-card-6 { transform: translateY(0.5rem); }

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a7c3e;
    margin: 0 1.5rem 1rem;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #2d5a24;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-block-offset {
    margin: 7rem 5%;
    background-color: #f9f9f9;
    padding: 4rem;
    border-radius: 8px;
    transform: translateX(-2rem);
}

.trust-content {
    max-width: 900px;
}

.trust-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.citation {
    color: #4a7c3e;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.testimonials-scattered {
    margin: 7rem 5%;
    padding: 4rem 0;
}

.testimonials-scattered h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.testimonial-1 { transform: translateY(1rem); }
.testimonial-2 { transform: translateY(-1.5rem); }
.testimonial-3 { transform: translateY(0.5rem); }

.testimonial p {
    font-size: 1.05rem;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.form-section-offset {
    margin: 7rem 5%;
    background: linear-gradient(135deg, #2d5a24 0%, #4a7c3e 100%);
    padding: 5rem 4rem;
    border-radius: 8px;
    transform: translateX(2rem);
}

.form-wrapper {
    max-width: 700px;
}

.form-wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
}

.form-wrapper p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
    color: #1a1a1a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(255,255,255,0.5);
}

.btn-submit {
    padding: 1.1rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin: 5rem 5%;
    padding: 2.5rem;
    background-color: #fff9e6;
    border-left: 4px solid #f0ad4e;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col-1 { transform: translateY(-0.5rem); }
.footer-col-2 { transform: translateY(0.8rem); }
.footer-col-3 { transform: translateY(-0.3rem); }
.footer-col-4 { transform: translateY(0.5rem); }

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4a7c3e;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a7c3e;
}

.references {
    list-style: decimal;
    padding-left: 1.2rem;
}

.references li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

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

.services-hero-content {
    max-width: 800px;
    transform: translateX(2rem);
}

.services-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    margin: 5rem 5%;
}

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

.service-detail-left {
    transform: translateX(1rem);
}

.service-detail-right {
    transform: translateX(-1rem);
}

.service-detail-text {
    flex: 1;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c3e;
    margin-top: 1.5rem;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f7ee;
}

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

.service-cta-offset {
    margin: 6rem 5%;
    background-color: #2d5a24;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    transform: translateX(-1.5rem);
}

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

.cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

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

.btn-cta-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2d5a24;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.about-hero-asymmetric {
    margin: 4rem 5%;
    padding: 3rem 0;
}

.about-hero-wrapper {
    max-width: 900px;
    transform: translateX(-1rem);
}

.about-hero-wrapper h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.about-hero-wrapper p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.about-story-offset {
    display: flex;
    margin: 6rem 5%;
    gap: 3rem;
    align-items: center;
}

.story-block-right {
    flex: 1;
    transform: translateY(1.5rem);
    background-color: #e8f4e6;
}

.story-block-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.story-content-left {
    flex: 1.2;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.story-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content-left p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.values-scattered {
    margin: 7rem 5%;
    padding: 4rem 0;
}

.values-scattered h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.value-card-1 { transform: translateY(-1rem); }
.value-card-2 { transform: translateY(1.2rem); }
.value-card-3 { transform: translateY(-0.5rem); }

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5a24;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.team-asymmetric {
    display: flex;
    margin: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.team-content-offset {
    flex: 1;
    transform: translateX(-1rem);
}

.team-content-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content-offset p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.team-image-offset {
    flex: 1;
    transform: translateY(-2rem);
    background-color: #f0f7ee;
}

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

.approach-block {
    margin: 6rem 5%;
    background-color: #f9f9f9;
    padding: 4rem;
    border-radius: 8px;
    transform: translateX(1.5rem);
}

.approach-wrapper {
    max-width: 900px;
}

.approach-wrapper h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-wrapper p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.cta-about-offset {
    margin: 6rem 5%;
    background: linear-gradient(135deg, #4a7c3e 0%, #2d5a24 100%);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    transform: translateX(-2rem);
}

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

.cta-about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

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

.btn-cta-primary {
    display: inline-block;
    background-color: #fff;
    color: #2d5a24;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

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

.contact-hero-content {
    max-width: 800px;
    transform: translateX(1.5rem);
}

.contact-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.contact-info-asymmetric {
    display: flex;
    margin: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.contact-block {
    flex: 1;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-block-left {
    transform: translateX(-1rem);
}

.contact-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5a24;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.contact-email {
    color: #444;
    pointer-events: none;
}

.contact-image-right {
    flex: 1;
    transform: translateY(1.5rem);
    background-color: #e8f4e6;
}

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

.contact-additional {
    margin: 5rem 5%;
    background-color: #f9f9f9;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    transform: translateX(1rem);
}

.contact-additional-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-additional-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-additional-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-contact-cta {
    display: inline-block;
    background-color: #4a7c3e;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background-color: #3d6833;
    transform: translateY(-3px);
}

.contact-faq-offset {
    margin: 6rem 5%;
}

.contact-faq-offset h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a24;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.thanks-section {
    margin: 6rem 5%;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-wrapper {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #4a7c3e;
    margin-bottom: 1.5rem;
}

.thanks-wrapper h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.thanks-service {
    font-size: 1.1rem;
    color: #4a7c3e;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 2rem 0;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-thanks-primary {
    background-color: #4a7c3e;
    color: #fff;
}

.btn-thanks-primary:hover {
    background-color: #3d6833;
    transform: translateY(-2px);
}

.btn-thanks-secondary {
    background-color: transparent;
    color: #4a7c3e;
    border: 2px solid #4a7c3e;
}

.btn-thanks-secondary:hover {
    background-color: #f0f7ee;
    transform: translateY(-2px);
}

.legal-page {
    margin: 4rem 5%;
    padding: 3rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a24;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #4a7c3e;
    text-decoration: underline;
}

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

.legal-updated {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    font-weight: 700;
    color: #2d5a24;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #444;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .about-story-offset,
    .team-asymmetric,
    .contact-info-asymmetric,
    .service-detail {
        flex-direction: column;
    }

    .hero-text-block,
    .hero-image-block,
    .intro-content-left,
    .intro-image-right,
    .story-block-right,
    .story-content-left,
    .team-content-offset,
    .team-image-offset,
    .contact-block,
    .contact-image-right,
    .service-detail-text,
    .service-detail-image {
        transform: none !important;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .nav-disclaimer {
        position: static;
        transform: none;
        margin: 0.5rem 0;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .services-grid-offset,
    .testimonial-grid,
    .values-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial,
    .value-card {
        transform: none !important;
    }

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

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