* {
    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: #2c3e2e;
    background-color: #fafaf8;
}

.ad-notice {
    background-color: #e8ebe6;
    color: #5a6b5c;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #d4d9d1;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5a7a5e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #5a7a5e;
}

.hero-section {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(44, 62, 46, 0.7);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 700px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-overlay p {
    color: #e8ebe6;
    font-size: 1.2rem;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-section {
    background-color: #f4f6f2;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: #2c3e2e;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5a4c;
}

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

.services-highlight h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e2e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fafaf8;
    border: 1px solid #e0e4dc;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e2e;
}

.service-info p {
    font-size: 0.95rem;
    color: #5a6b5c;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5a7a5e;
    margin-bottom: 1rem;
}

.select-service-btn {
    background-color: #5a7a5e;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #4a6a4e;
}

.values-section {
    background-color: #e8ebe6;
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e2e;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e2e;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5a4c;
}

.form-section {
    background-color: #f4f6f2;
}

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e2e;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #5a6b5c;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c3e2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #d4d9d1;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #5a7a5e;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.testimonials-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e2e;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background-color: #f4f6f2;
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 260px;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.testimonial cite {
    font-style: normal;
    font-weight: 500;
    color: #5a7a5e;
}

.main-footer {
    background-color: #2c3e2e;
    color: #e8ebe6;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d4d9d1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5a4c;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #a8b5a0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2e;
    color: #e8ebe6;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #6b7c6d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6b5c;
}

.page-header {
    background-color: #5a7a5e;
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #e8ebe6;
}

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

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5a4c;
}

.about-image {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.philosophy-section {
    background-color: #f4f6f2;
}

.philosophy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e2e;
}

.philosophy-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5a4c;
}

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

.team-values h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e2e;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    width: calc(50% - 1rem);
    min-width: 260px;
    background-color: #f4f6f2;
    padding: 2rem;
}

.value-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e2e;
}

.value-block p {
    font-size: 1rem;
    color: #5a6b5c;
}

.process-section {
    background-color: #e8ebe6;
}

.process-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e2e;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    width: calc(33.333% - 1.5rem);
    min-width: 240px;
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a7a5e;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e2e;
}

.process-step p {
    font-size: 0.95rem;
    color: #5a6b5c;
}

.cta-section {
    background-color: #5a7a5e;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e8ebe6;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #5a7a5e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #e8ebe6;
    color: #4a6a4e;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #5a7a5e;
    border: 2px solid #5a7a5e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #5a7a5e;
    color: #ffffff;
}

.services-detail {
    background-color: #fafaf8;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e4dc;
}

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5a4c;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1rem;
    color: #5a6b5c;
}

.price-value {
    font-size: 2rem;
    font-weight: 600;
    color: #5a7a5e;
}

.service-detail-image {
    width: 45%;
    height: 350px;
    background-size: cover;
    background-position: center;
}

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

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-details {
    width: 40%;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e2e;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #5a7a5e;
}

.contact-block p {
    font-size: 1rem;
    color: #4a5a4c;
    line-height: 1.6;
}

.contact-note {
    font-size: 0.9rem;
    color: #6b7c6d;
    font-style: italic;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.contact-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5a4c;
}

.contact-text ul {
    margin: 1rem 0 1rem 1.5rem;
}

.contact-text ul li {
    margin-bottom: 0.5rem;
    color: #4a5a4c;
}

.response-info {
    background-color: #f4f6f2;
    padding: 1.5rem;
    margin-top: 2rem;
}

.response-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #5a7a5e;
}

.response-info p {
    font-size: 0.95rem;
}

.service-area-section {
    background-color: #e8ebe6;
}

.service-area-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e2e;
    text-align: center;
}

.service-area-section p {
    font-size: 1.05rem;
    color: #4a5a4c;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #5a7a5e;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #4a5a4c;
    margin-bottom: 1rem;
}

.thanks-service-info {
    background-color: #f4f6f2;
    padding: 1.5rem;
    margin: 2rem 0;
}

.thanks-service-info p {
    margin: 0;
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #4a5a4c;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e2e;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c3e2e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #5a7a5e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    color: #4a5a4c;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #4a5a4c;
}

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

.update-date {
    margin-top: 2rem;
    font-style: italic;
    color: #6b7c6d;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .service-card {
        width: 100%;
    }

    .testimonial {
        width: 100%;
    }

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

    .about-image {
        width: 100%;
    }

    .value-block {
        width: 100%;
    }

    .process-step {
        width: 100%;
    }

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

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

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

    .contact-details {
        width: 100%;
    }

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

    .cta-button-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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