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

.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #f5c6cb;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

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

.nav-menu a:hover {
    color: #2c5f2d;
}

.hero-section {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background-color: #f9faf8;
}

.hero-content {
    flex: 1;
    padding: 60px 80px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a3a1b;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c57;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 42px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1f4521;
}

.hero-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.intro-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 38px;
    color: #1a3a1b;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    color: #4a5a47;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 90px 30px;
    background-color: #fafbfa;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

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

.value-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.value-card h3 {
    font-size: 24px;
    color: #1a3a1b;
    margin: 25px 25px 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #5a6c57;
    margin: 0 25px 25px;
    line-height: 1.7;
}

.services-pricing {
    padding: 100px 30px;
    background-color: #ffffff;
}

.container-medium {
    max-width: 950px;
    margin: 0 auto;
}

.services-pricing h2 {
    font-size: 42px;
    color: #1a3a1b;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c57;
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    background-color: #f9faf8;
    border-radius: 8px;
    border: 1px solid #e5ebe4;
}

.service-info {
    flex: 1;
    padding-right: 40px;
}

.service-info h3 {
    font-size: 24px;
    color: #1a3a1b;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    color: #5a6c57;
    line-height: 1.7;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.price-note {
    font-size: 14px;
    color: #7a8a77;
    margin-top: -10px;
}

.select-service {
    padding: 12px 28px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.select-service.selected {
    background-color: #4a7c5a;
}

.form-section {
    padding: 90px 30px;
    background-color: #f9faf8;
}

.form-section h2 {
    font-size: 38px;
    color: #1a3a1b;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c57;
    margin-bottom: 50px;
}

.contact-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1f4521;
}

.testimonials-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    color: #1a3a1b;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f9faf8;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

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

.testimonial-author {
    font-size: 15px;
    color: #7a8a77;
    font-weight: 600;
}

.final-cta {
    padding: 90px 30px;
    background-color: #2c5f2d;
    text-align: center;
}

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

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

.cta-button-secondary {
    display: inline-block;
    padding: 16px 42px;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #f0f5f0;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #fef9e7;
    border-top: 2px solid #f9e79f;
}

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.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: #b8d4b9;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1f4521;
}

.cookie-reject {
    background-color: #7a8a77;
    color: #ffffff;
}

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

.page-header {
    padding: 80px 30px 60px;
    background-color: #f9faf8;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a3a1b;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 19px;
    color: #5a6c57;
}

.about-content {
    padding: 80px 30px;
}

.about-story {
    margin-bottom: 60px;
}

.about-story h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-story p {
    font-size: 18px;
    color: #4a5a47;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-section {
    margin: 60px 0;
    background-color: #e8f5e9;
}

.about-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-philosophy {
    margin: 60px 0;
}

.about-philosophy h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-philosophy p {
    font-size: 18px;
    color: #4a5a47;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    margin: 60px 0;
    padding: 50px;
    background-color: #f9faf8;
    border-radius: 8px;
}

.team-section h2 {
    font-size: 32px;
    color: #1a3a1b;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    color: #4a5a47;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section-about {
    margin: 60px 0;
}

.values-section-about h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

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

.value-item p {
    font-size: 16px;
    color: #5a6c57;
    line-height: 1.7;
}

.cta-about {
    margin-top: 80px;
    padding: 60px;
    background-color: #2c5f2d;
    border-radius: 8px;
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    color: #e8f5e9;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 30px 100px;
}

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

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

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

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

.service-price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5a47;
    margin-bottom: 18px;
    line-height: 1.8;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-link:hover {
    background-color: #1f4521;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f5e9;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-cta {
    padding: 80px 30px;
    background-color: #f9faf8;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta p {
    font-size: 18px;
    color: #5a6c57;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    color: #4a5a47;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #f9faf8;
    border-radius: 6px;
    border-left: 4px solid #2c5f2d;
}

.contact-note p {
    font-size: 16px;
    color: #5a6c57;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-box {
    text-align: center;
}

.map-box p {
    font-size: 16px;
    color: #4a5a47;
    line-height: 1.7;
    margin-bottom: 15px;
}

.visit-section {
    padding: 80px 30px;
    background-color: #f9faf8;
}

.visit-section h2 {
    font-size: 36px;
    color: #1a3a1b;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.visit-section p {
    font-size: 18px;
    color: #4a5a47;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.visit-section .cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

.thanks-section {
    padding: 120px 30px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #1a3a1b;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 25px;
    font-weight: 600;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5a47;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background-color: #f9faf8;
    border-radius: 8px;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c5f2d;
}

.thanks-note {
    font-size: 16px;
    color: #7a8a77;
    margin-top: 30px;
}

.thanks-content .cta-button {
    margin-top: 40px;
}

.legal-content {
    padding: 60px 30px 100px;
}

.legal-content h2 {
    font-size: 32px;
    color: #1a3a1b;
    margin: 50px 0 25px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin: 35px 0 20px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #4a5a47;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #4a5a47;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-intro {
    font-size: 17px;
    color: #5a6c57;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-update {
    font-size: 15px;
    color: #7a8a77;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

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

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-info {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .service-price {
        align-items: flex-start;
    }

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

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

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

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

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

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