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

:root {
    --primary-color: #3f6b4e;
    --secondary-color: #5e8c6f;
    --accent-color: #7ab893;
    --text-dark: #1a2b23;
    --text-light: #4a5c52;
    --background-light: #f7f9f8;
    --white: #ffffff;
    --border-color: #d4e0d8;
    --error-color: #c74a4a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--background-light);
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background-color: #2f5139;
    transform: translateY(-2px);
}

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

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

.intro-section {
    padding: 90px 40px;
    background-color: var(--white);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

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

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

.split-content-left,
.split-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-content-left {
    background-color: var(--background-light);
}

.split-content-right {
    background-color: var(--white);
}

.split-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.split-section p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.btn-select-service {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.form-section {
    padding: 90px 40px;
    background-color: var(--background-light);
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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: var(--primary-color);
}

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

.btn-submit:hover {
    background-color: #2f5139;
}

.trust-section {
    padding: 90px 40px;
    background-color: var(--white);
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
}

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

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

.disclaimer-section {
    padding: 50px 40px;
    background-color: #f0f4f2;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--background-light);
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: var(--background-light);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: var(--background-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 25px;
    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;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #2f5139;
}

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

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

.page-hero {
    background-color: var(--background-light);
    padding: 80px 40px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.values-section {
    padding: 90px 40px;
    background-color: var(--white);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    max-width: 450px;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
}

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

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

.approach-section {
    padding: 90px 40px;
    background-color: var(--background-light);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.cta-section {
    padding: 90px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

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

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

.services-detail {
    padding: 60px 40px;
}

.service-block {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

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

.contact-info-section {
    padding: 60px 40px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

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

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

.contact-text-section {
    padding: 60px 40px 90px;
}

.contact-text-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.contact-cta {
    margin-top: 35px;
    text-align: center;
}

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

.thanks-content {
    text-align: center;
}

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

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

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

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

.legal-content {
    padding: 60px 40px 90px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .split-section {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content-left,
    .split-content-right {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .intro-section,
    .form-section,
    .trust-section,
    .values-section,
    .approach-section,
    .cta-section {
        padding: 60px 30px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-block {
        flex-direction: column;
        gap: 30px;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}