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

:root {
    --primary-color: #2d7a3e;
    --secondary-color: #1a4d28;
    --accent-color: #5ba86d;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #707070;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --fallback-bg: #e8ece9;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--fallback-bg);
}

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

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

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.services-preview {
    padding: 40px 0;
    background-color: var(--bg-white);
}

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

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--fallback-bg);
}

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

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

.split-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--secondary-color);
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
}

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.trust-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

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

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

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

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-split,
.team-section {
    padding: 80px 0;
}

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

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

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

.approach-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.stats-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-simple {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 40px 0;
}

.service-block {
    padding: 60px 0;
}

.service-block.alternate {
    background-color: var(--bg-light);
}

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

.service-features {
    list-style: none;
    margin: 25px 0;
}

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

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

.pricing-note {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.pricing-note h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-note p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.contact-content {
    padding: 60px 0;
}

.split-layout-wide {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info-block > p {
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

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

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

.detail-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.detail-item .note {
    font-style: italic;
    font-size: 14px;
    margin-top: 5px;
}

.cta-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.cta-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.contact-visual {
    flex: 1;
    position: relative;
    background-color: var(--fallback-bg);
}

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

.hours-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 6px;
}

.hours-overlay h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.hours-overlay ul {
    list-style: none;
}

.hours-overlay li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: var(--text-medium);
}

.location-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.location-section > p {
    text-align: center;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 50px;
}

.service-areas {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.area-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

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

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

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.thanks-hero {
    padding: 100px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-content svg {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-content .lead {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.next-steps {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.thanks-info {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.thanks-info .split-layout {
    gap: 80px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-info p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.contact-box {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

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

.contact-box p {
    margin-bottom: 8px;
}

.contact-box .hours {
    font-size: 14px;
    color: var(--text-light);
}

.useful-links {
    list-style: none;
}

.useful-links li {
    margin-bottom: 15px;
}

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

.useful-links a:hover {
    color: var(--secondary-color);
}

.back-home {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--bg-white);
}

.legal-page {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: var(--text-medium);
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

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

.cookie-table td {
    color: var(--text-medium);
}

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

    .hero-left {
        padding: 60px 30px;
    }

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

    .split-layout,
    .split-layout-wide {
        flex-direction: column;
        gap: 40px;
    }

    .service-block:nth-child(even) .split-layout {
        flex-direction: column-reverse;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

    .stats-grid {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }

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

    .trust-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-submit {
        width: 100%;
    }
}
