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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #4a8359;
    --accent-color: #7ab88d;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

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

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

.hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

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

.intro-section,
.about-intro,
.values-section,
.team-section,
.trust-section,
.location-section {
    padding: 80px 0;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

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

.content-block {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.image-block {
    flex: 1;
    background-color: var(--border-color);
    min-height: 450px;
}

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

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

.content-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

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

.content-block ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-block li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.services-preview {
    padding: 90px 30px;
    background-color: var(--bg-light);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.center {
    text-align: center;
}

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

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

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: calc(33.333% - 24px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-card h3 {
    font-size: 22px;
    padding: 25px 25px 10px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 25px 15px;
    color: var(--text-light);
    font-size: 15px;
}

.service-card .price {
    display: block;
    padding: 15px 25px 25px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

.cta-inline a {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.form-section {
    padding: 90px 30px;
    background-color: var(--bg-white);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.consultation-form {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
}

.service-selection {
    margin-bottom: 40px;
}

.service-selection label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-option {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 200px;
    background-color: var(--bg-white);
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-option:hover {
    border-color: var(--secondary-color);
    background-color: #f0f7f3;
}

.service-option input[type="radio"] {
    accent-color: var(--primary-color);
}

.service-option span {
    font-size: 16px;
    color: var(--text-dark);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: var(--bg-light);
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 50px;
    background-color: #fff9e6;
    border-left: 5px solid #f0ad4e;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.main-footer {
    background-color: #1a2f23;
    color: #cccccc;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3a4f43;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 47, 35, 0.97);
    padding: 25px 30px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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 {
    color: white;
    font-size: 15px;
    flex: 1;
}

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

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

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

.btn-accept:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #666666;
    color: white;
}

.btn-reject:hover {
    background-color: #555555;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    margin-bottom: 10px;
}

.approach-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-step p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-section {
    padding: 90px 30px;
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f5e9 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 0;
}

.price-box {
    margin-top: 30px;
    padding: 20px 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

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

.info-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-container h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-container p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

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

.contact-detail {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-dark);
}

.legal-content {
    padding: 60px 30px 90px;
    background-color: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-container h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.legal-container ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-container li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f5e9 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 6px;
    margin-bottom: 50px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-confirmation p {
    font-size: 17px;
    color: var(--text-dark);
}

.service-confirmation strong {
    color: var(--primary-color);
}

.next-steps {
    margin: 50px 0;
}

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

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

.step-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 220px;
    padding: 30px 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.step-item p {
    font-size: 16px;
    color: var(--text-light);
}

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

.btn-primary {
    padding: 16px 38px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    padding: 16px 38px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

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

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

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

    .service-card {
        width: calc(50% - 18px);
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .content-block {
        padding: 40px 30px;
    }

    .service-card {
        width: 100%;
    }

    .service-option {
        flex: 1 1 100%;
    }

    .consultation-form {
        padding: 30px;
    }

    .approach-step {
        flex: 1 1 100%;
    }

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

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

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

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

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-content {
        padding: 50px 25px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .content-block h2 {
        font-size: 28px;
    }
}