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

:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1e4029;
    --accent-color: #6b9b7a;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.hero-content {
    max-width: 500px;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: var(--accent-color);
}

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

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-btn-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.25rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

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

.split-container {
    display: flex;
    align-items: center;
}

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

.split-text-left,
.split-text-right {
    flex: 1;
    padding: 4rem;
}

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: var(--accent-color);
}

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

.split-text-left h2,
.split-text-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-text-left p,
.split-text-right p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.intro-section,
.services-intro,
.trust-section,
.form-section,
.cta-final {
    padding: 5rem 0;
}

.services-intro {
    background-color: var(--bg-light);
}

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

.form-section {
    background-color: var(--bg-light);
}

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

.cta-final h2 {
    color: var(--bg-white);
}

.cta-final p {
    color: var(--bg-light);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.centered {
    text-align: center;
}

.service-list-compact {
    margin: 2rem 0;
}

.service-item {
    margin-bottom: 2rem;
}

.service-item h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-item .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.link-cta {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.link-cta:hover {
    color: var(--primary-dark);
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.main-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.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,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.split-form-right {
    flex: 1;
    padding: 4rem;
}

.small-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--bg-light);
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.page-hero {
    background-color: var(--bg-light);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.services-detailed {
    padding: 0 0 3rem;
}

.service-block {
    margin-bottom: 4rem;
}

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

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

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

.cta-services {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.cta-services h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-about {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.cta-about h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.about-story,
.about-approach,
.about-team {
    padding: 5rem 0;
}

.about-approach {
    background-color: var(--bg-light);
}

.about-values {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
}

.contact-content {
    padding: 3rem 0;
}

.contact-info {
    margin-top: 2rem;
}

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

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

.contact-item p {
    color: var(--text-medium);
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-note strong {
    color: var(--text-dark);
}

.visit-info {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--text-medium);
}

.faq-section {
    padding: 4rem 0;
}

.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.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-medium);
}

.thanks-hero {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-medium);
}

.thanks-content {
    padding: 4rem 0;
}

.thanks-info {
    margin-bottom: 3rem;
}

.next-steps {
    margin-top: 2rem;
}

.next-step {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.next-step h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.next-step p {
    color: var(--text-medium);
}

.thanks-additional {
    margin-bottom: 3rem;
}

.thanks-additional h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.thanks-additional ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.thanks-additional li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

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

.thanks-contact-reminder strong {
    color: var(--text-dark);
}

.legal-content {
    padding: 3rem 0 5rem;
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

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

    .split-text-left,
    .split-text-right,
    .split-form-right {
        padding: 2rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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