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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #3d6849;
}

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

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #4a7c59;
}

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

.hero-section {
    position: relative;
    min-height: 500px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.75), rgba(74, 124, 89, 0.6));
    display: flex;
    align-items: center;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #3d6849;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4a7c59;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid #4a7c59;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: rgba(74, 124, 89, 0.1);
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.services-grid-section {
    padding: 80px 0;
    background-color: #f7f6f3;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background-color: #3d6849;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c2c2c;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: #3d6849;
}

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4a7c59;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero {
    background: linear-gradient(135deg, #4a7c59, #3d6849);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 18px;
}

.about-content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

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

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

.image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f7f6f3;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

.value-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    width: calc(50% - 15px);
    min-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

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

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: #f7f6f3;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.testimonial-section {
    padding: 80px 0;
    background-color: #f7f6f3;
}

.testimonial-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #4a7c59;
    font-weight: 600;
}

.services-detail-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f7f6f3;
    border-radius: 12px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

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

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

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 24px;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

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

.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

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

.contact-details > p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.contact-note {
    padding: 20px;
    background-color: #f7f6f3;
    border-radius: 8px;
    margin-top: 32px;
}

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

.contact-image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

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

.location-section {
    padding: 80px 0;
    background-color: #f7f6f3;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c2c2c;
    text-align: center;
    font-weight: 700;
}

.location-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
    min-height: 400px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #4a7c59;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.service-reference {
    font-weight: 600;
    color: #4a7c59;
}

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

.next-steps-section {
    padding: 80px 0;
    background-color: #f7f6f3;
}

.next-steps-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

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

.step-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #4a7c59;
    font-weight: 600;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page a {
    color: #4a7c59;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #3d6849;
}

@media (max-width: 768px) {
    .main-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

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

    .section-title {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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

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

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