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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #3d6549;
}

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

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

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c2c2c;
}

.hero-visual {
    position: relative;
    height: 85vh;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.hero-sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-family: 'Arial', sans-serif;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #3d6549;
}

.story-intro {
    padding: 5rem 2rem;
    background: #fff;
}

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

.lead-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-style: italic;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.problem-section {
    padding: 4rem 2rem;
    background: #f5f5f3;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
    height: 400px;
}

.img-placeholder {
    background: linear-gradient(45deg, #bdc3c7 0%, #95a5a6 100%);
    border-radius: 4px;
}

.insight-block {
    padding: 5rem 2rem;
    background: #2c2c2c;
    color: #fff;
}

.centered {
    text-align: center;
}

.insight-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.approach-story {
    padding: 5rem 2rem;
    background: #fff;
}

.full-width-text {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.full-width-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

.three-col-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f9f9f7;
    border-left: 4px solid #4a7c59;
}

.flow-number {
    font-size: 3rem;
    color: #4a7c59;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.flow-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.flow-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: #4a7c59;
}

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

.testimonial-text {
    font-size: 1.4rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Arial', sans-serif;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

.benefit-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-item {
    flex: 1;
    min-width: 220px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 500;
}

.benefit-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.cta-mid-section {
    padding: 4rem 2rem;
    background: #f5f5f3;
}

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

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1a1a1a;
}

.services-pricing {
    padding: 5rem 2rem;
    background: #fff;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 2.5rem;
    background: #fafaf8;
    border: 1px solid #e0e0de;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    border: 2px solid #4a7c59;
    background: #f9fef9;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4a7c59;
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-desc {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 0.95rem;
    color: #4a4a4a;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #3d6549;
}

.trust-section {
    padding: 4rem 2rem;
    background: #f5f5f3;
}

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

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.trust-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.testimonials-extended {
    padding: 5rem 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-extended .testimonial-card {
    background: #f9f9f7;
    padding: 2.5rem;
    border-left: 4px solid #4a7c59;
}

.testimonials-extended .testimonial-text {
    color: #2c2c2c;
    font-size: 1.2rem;
}

.testimonials-extended .testimonial-author {
    color: #5a5a5a;
}

.urgency-section {
    padding: 3rem 2rem;
    background: #2c2c2c;
}

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

.urgency-text {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.6;
}

.form-section {
    padding: 5rem 2rem;
    background: #f5f5f3;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-intro {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0ce;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border-radius: 3px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background 0.3s;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: #fff;
}

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

.final-message h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.final-message p {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.cta-button-final {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background 0.3s;
}

.cta-button-final:hover {
    background: #1a1a1a;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Arial', sans-serif;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #3d6549;
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .hero-sub {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .split-text h2 {
        font-size: 1.8rem;
    }

    .three-col-flow {
        flex-direction: column;
    }

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

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

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

    .sticky-cta {
        left: 20px;
        right: 20px;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }
}

.service-selected {
    border: 3px solid #4a7c59;
    background: #f9fef9;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f5f5f3;
}

.thanks-content {
    max-width: 700px;
    background: #fff;
    padding: 4rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service {
    background: #f9f9f7;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #4a7c59;
}

.thanks-service strong {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #3d6549;
}

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.header-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Arial', sans-serif;
}

.about-story {
    padding: 5rem 2rem;
    background: #fff;
}

.about-story h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.philosophy-section {
    padding: 5rem 2rem;
    background: #f5f5f3;
}

.philosophy-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.values-section {
    padding: 5rem 2rem;
    background: #fff;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9f9f7;
    border-left: 4px solid #4a7c59;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.value-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.team-section {
    padding: 5rem 2rem;
    background: #f5f5f3;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-about {
    padding: 4rem 2rem;
    background: #fff;
}

.services-intro {
    padding: 5rem 2rem;
    background: #f5f5f3;
}

.how-it-works {
    padding: 5rem 2rem;
    background: #f5f5f3;
}

.steps-flow {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4a7c59;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Arial', sans-serif;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.step-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 2rem;
    background: #fff;
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0de;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.cta-services {
    padding: 4rem 2rem;
    background: #2c2c2c;
}

.cta-services .cta-box h3 {
    color: #fff;
}

.cta-services .cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-services .cta-button {
    background: #4a7c59;
}

.cta-services .cta-button:hover {
    background: #3d6549;
}

.contact-info-section {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-item a {
    color: #4a7c59;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #3d6549;
    text-decoration: underline;
}

.contact-note {
    background: #f9f9f7;
    padding: 1.5rem;
    border-left: 4px solid #4a7c59;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin: 0;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.contact-cta {
    padding: 4rem 2rem;
    background: #f5f5f3;
}

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-cta a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-cta a:hover {
    color: #3d6549;
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 2rem;
    margin-top: 60px;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.last-updated {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

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

.legal-content a:hover {
    color: #3d6549;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.cookie-table thead {
    background: #2c2c2c;
    color: #fff;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0de;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.cookie-table tbody tr:hover {
    background: #f9f9f7;
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 2rem 3rem;
    }

    .header-content h1 {
        font-size: 2rem;
    }

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

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

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

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

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem 0.5rem;
    }
}