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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97c05c;
    --accent-color: #d4a373;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --footer-bg: #2a2a2a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-white);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #1e4420;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.split-section {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

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

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.split-image-left,
.split-image-right {
    flex: 1;
    position: relative;
}

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

.services-preview {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 350px;
    max-width: 420px;
    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-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 0 1.5rem 1rem;
}

.select-service-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.form-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.footer {
    background-color: var(--footer-bg);
    color: var(--bg-light);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #808080;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--footer-bg);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    font-size: 0.95rem;
}

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

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

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

.cookie-btn.accept {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-btn.accept:hover {
    background-color: #7da849;
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.content-centered {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.content-centered h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-centered p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

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

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

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
    color: #666;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--bg-light);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.thanks-details p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.thanks-details strong {
    color: var(--primary-color);
}

.thanks-info {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        min-height: 400px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}

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

    .nav-menu {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

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

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

    .split-content-left h2,
    .split-content-right h2,
    .content-centered h2 {
        font-size: 1.7rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
