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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.main-nav {
    background-color: #2d4a2b;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 0;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    padding: 18px 0;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-section {
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(45, 74, 43, 0.75);
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 800px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
}

.cta-button {
    background-color: #5a8a57;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4a7447;
    cursor: pointer;
}

.cta-button-secondary {
    background-color: transparent;
    color: #2d4a2b;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2d4a2b;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #2d4a2b;
    color: #ffffff;
    cursor: pointer;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.content-wrapper-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.intro-block {
    background-color: #ffffff;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d4a2b;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.visual-break {
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-overlay {
    background-color: rgba(74, 103, 65, 0.8);
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.visual-overlay-dark {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    min-height: 400px;
}

.visual-overlay blockquote {
    color: #ffffff;
    font-size: 32px;
    font-style: italic;
    max-width: 800px;
    text-align: center;
    line-height: 1.5;
}

.services-preview {
    background-color: #f9faf8;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d4a2b;
    text-align: center;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d4a2b;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #5a8a57;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2d4a2b;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.select-service:hover {
    background-color: #1f3320;
}

.trust-section {
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d4a2b;
    font-weight: 700;
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.testimonial-block {
    background-color: #f4f6f3;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #5a8a57;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-block cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.form-section {
    color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.form-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e8ebe6;
}

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

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #5a8a57;
    color: #ffffff;
    padding: 16px 50px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4a7447;
}

.disclaimer-section {
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #1f3320;
    color: #e8ebe6;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

.footer-column ul li a {
    color: #c8ccc6;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d4a2b;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

.cookie-btn.accept {
    background-color: #5a8a57;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #4a7447;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-header {
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    color: #e8ebe6;
}

.about-content {
    background-color: #ffffff;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d4a2b;
    font-weight: 700;
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.about-visual {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-approach {
    background-color: #f9faf8;
}

.about-approach h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d4a2b;
    font-weight: 700;
}

.about-approach p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d4a2b;
    text-align: center;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d4a2b;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d4a2b;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e8ebe6;
}

.services-detailed {
    background-color: #ffffff;
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d4a2b;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a8a57;
    font-weight: 700;
}

.price-display {
    font-size: 26px;
    font-weight: 700;
    color: #5a8a57;
    margin: 25px 0;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-note {
    padding: 60px 20px;
}

.services-note h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d4a2b;
    font-weight: 700;
}

.services-note p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
}

.contact-info-section {
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d4a2b;
    font-weight: 700;
}

.contact-details p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d4a2b;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #555;
    font-weight: 500;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 600px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d4a2b;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
}

.faq-section {
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d4a2b;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8ebe6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d4a2b;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d4a2b;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.thanks-info {
    background-color: #f4f6f3;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2d4a2b;
    font-weight: 600;
}

.next-steps {
    padding-left: 20px;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.thanks-note {
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 16px;
    color: #555;
}

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

.legal-page {
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2d4a2b;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d4a2b;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d4a2b;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-page a {
    color: #5a8a57;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #4a7447;
}

.cookie-table {
    background-color: #f4f6f3;
    padding: 25px;
    border-radius: 6px;
    margin: 25px 0;
}

.cookie-table h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2d4a2b;
}

.cookie-table p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 17px;
    }

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

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

    .form-row {
        flex-direction: column;
    }

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

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

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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

    .thanks-actions a {
        width: 100%;
    }
}