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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c59;
    --accent-color: #7fb685;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-notice {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: var(--accent-color);
    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: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.intro-narrow {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 5%;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-preview {
    padding: 80px 5%;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.service-card-split {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.btn-select {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: var(--primary-color);
}

.trust-block {
    background-color: var(--bg-light);
    padding: 80px 5%;
}

.trust-block h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-cards {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 80px 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-section .cta-primary:hover {
    background-color: var(--bg-light);
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p,
.footer-col a {
    color: var(--bg-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: var(--bg-light);
}

.disclaimer {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--bg-white);
    padding: 25px 5%;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background-color: var(--secondary-color);
}

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

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-display {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.service-display p {
    margin: 5px 0;
    color: var(--text-dark);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.page-header {
    text-align: center;
    padding: 80px 5% 60px;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.about-split {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.values-section {
    background-color: var(--bg-light);
    padding: 80px 5%;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.approach-section {
    padding: 80px 5%;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.approach-steps {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    position: relative;
    padding-left: 25px;
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    background-color: var(--bg-light);
    padding: 80px 5%;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-section p {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 5% 80px;
}

.service-detail-card {
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    background-color: var(--bg-light);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-body {
    padding: 30px;
}

.service-detail-body img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    max-height: 400px;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.service-description ul {
    margin: 20px 0 25px 25px;
}

.service-description li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    padding: 60px 5%;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-note {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.contact-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-selected {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5% 80px;
}

.legal-page h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-page h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

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

    .service-card-split.reverse {
        flex-direction: column;
    }

    .trust-cards,
    .approach-steps {
        flex-direction: column;
    }

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

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

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content h1,
    .page-header h1,
    .thanks-content h1 {
        font-size: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-secondary {
        flex: 1;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

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

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