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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #999;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#accept-cookies {
    background-color: #ffffff;
    color: #2d5a3d;
}

#accept-cookies:hover {
    background-color: #f0f0f0;
}

#reject-cookies {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

#reject-cookies:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.btn-hero:hover {
    background-color: #234a30;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8ede9;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8ede9;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

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

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

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

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8ede9;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.4rem;
    color: #2d5a3d;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.8rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: calc(100% - 3rem);
}

.btn-select:hover {
    background-color: #234a30;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.citation {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.form-container > p {
    color: #666;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a30;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff9e6;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.footer {
    background-color: #1a3325;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-col p,
.footer-col ul {
    font-size: 0.95rem;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-references p {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-references a {
    color: #ccc;
    text-decoration: none;
}

.footer-references a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.page-hero {
    padding: 4rem 2rem;
    background-color: #e8ede9;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #555;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    color: #666;
    line-height: 1.6;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.background-section {
    padding: 5rem 2rem;
    background-color: #e8ede9;
}

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

.content-centered h2 {
    font-size: 2.2rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.content-centered p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.cta-about,
.cta-services {
    padding: 4rem 2rem;
    background-color: #2d5a3d;
    text-align: center;
    color: #ffffff;
}

.cta-about h2,
.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-about p,
.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5a3d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    padding: 5rem 2rem;
}

.service-detail:nth-child(odd) {
    background-color: #ffffff;
}

.service-detail:nth-child(even) {
    background-color: #f8f9fa;
}

.price-box {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background-color: #e8ede9;
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
}

.price-unit {
    font-size: 1rem;
    color: #666;
}

.contact-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: #2d5a3d;
    margin-bottom: 0.7rem;
}

.info-block p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8ede9;
}

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

.map-placeholder {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.map-notice {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #e8ede9;
    border-radius: 8px;
    text-align: center;
}

.map-notice p {
    font-size: 1.1rem;
    color: #555;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#selected-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8ede9;
    border-radius: 6px;
}

#selected-service-info p {
    font-size: 1.1rem;
    color: #2d5a3d;
    font-weight: 600;
    margin: 0;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2d5a3d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2d5a3d;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-page a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #234a30;
}

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

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

.cookie-table th {
    background-color: #e8ede9;
    color: #2d5a3d;
    font-weight: 600;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

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

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

    .nav-links {
        gap: 1rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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