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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e20;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e20;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #5a8c35;
    color: #fff;
}

.btn-accept:hover {
    background: #4a7c2c;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e20;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 4px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e20;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #5a8c35;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #2c3e20 0%, #3d5228 100%);
}

.hero-text {
    max-width: 600px;
    color: #fff;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    min-height: 600px;
}

.cta-primary {
    display: inline-block;
    background: #5a8c35;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #4a7c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 140, 53, 0.3);
}

.intro-section,
.trust-section,
.approach-section,
.location-section {
    padding: 80px 0;
}

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

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

.split-image {
    flex: 1;
    min-height: 500px;
}

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e20;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.services-showcase {
    padding: 80px 40px;
    background: #f5f5f5;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e20;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 400px;
}

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e20;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #5a8c35;
    margin-bottom: 24px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #2c3e20;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #3d5228;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 32, 0.3);
}

.form-section {
    padding: 80px 40px;
    background: #fff;
}

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e20;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2c3e20;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #5a8c35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a8c35;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #5a8c35;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #4a7c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 140, 53, 0.3);
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f0f4ed;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #5a8c35;
    border-radius: 4px;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.main-footer {
    background: #2c3e20;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e20 0%, #3d5228 100%);
    padding: 80px 40px;
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.hero-content-center h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    min-height: 600px;
}

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #5a8c35;
    margin: 24px 0;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #555;
}

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

.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2c3e20 0%, #3d5228 100%);
    text-align: center;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.cta-content-center h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: #5a8c35;
    color: #fff;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: #4a7c2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90, 140, 53, 0.4);
}

.about-intro,
.commitment-section {
    padding: 80px 0;
}

.values-section {
    padding: 80px 40px;
    background: #f5f5f5;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e20;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

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

.commitment-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e20;
    font-weight: 700;
}

.contact-info-section {
    padding: 80px 0;
}

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e20;
    font-weight: 700;
}

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

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background: #f0f4ed;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

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

.location-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e20;
    font-weight: 700;
}

.info-request-section {
    padding: 80px 40px;
    background: #f5f5f5;
}

.info-request-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-request-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e20;
    font-weight: 700;
}

.info-request-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #5a8c35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e20;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.thanks-details {
    background: #f0f4ed;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: #2c3e20;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e20;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c3e20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e20;
    font-weight: 700;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #5a8c35;
    color: #fff;
}

.btn-primary:hover {
    background: #4a7c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 140, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c3e20;
    border: 2px solid #2c3e20;
}

.btn-secondary:hover {
    background: #2c3e20;
    color: #fff;
}

.legal-page {
    padding: 80px 40px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e20;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background: #f0f4ed;
    border-radius: 6px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e20;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e20;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #777;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background: #f0f4ed;
    color: #2c3e20;
    font-weight: 700;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-layout,
    .service-card-split,
    .form-container-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-image,
    .split-image,
    .service-image,
    .service-detail-image {
        min-height: 400px;
    }

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

    .split-content h2,
    .form-intro h2 {
        font-size: 28px;
    }

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

    .main-nav {
        flex-basis: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 20px;
    }

    .hero-content,
    .split-content,
    .service-info,
    .service-detail-content {
        padding: 40px 30px;
    }

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

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

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

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