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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: var(--bg-light);
    padding: 80px 0;
}

.hero-content {
    flex: 1;
    padding: 0 60px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hero-image {
    flex: 1;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
    margin-right: 60px;
    background-color: #e8f5e9;
}

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

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-grid-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 240px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1f4620;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-light);
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.trust-image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.benefit-card {
    background-color: var(--bg-white);
    padding: 40px 35px;
    border-radius: 12px;
    width: calc(50% - 15px);
    min-width: 300px;
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff9e6;
    border-top: 2px solid #ffd966;
    border-bottom: 2px solid #ffd966;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #5c4d2c;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

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

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: var(--bg-white);
    padding: 25px 30px;
    box-shadow: 0 -3px 20px 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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

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

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

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-header {
    background-color: var(--bg-light);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-detail-section {
    padding: 80px 0;
}

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

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

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-price {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service-detail {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-detail:hover {
    background-color: #1f4620;
    transform: translateY(-2px);
}

.references-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.about-content-section {
    padding: 80px 0;
}

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

.story-image {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-card {
    background-color: var(--bg-light);
    padding: 35px 30px;
    border-radius: 12px;
    width: calc(50% - 15px);
    min-width: 300px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
    background-color: #e8f5e9;
}

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

.approach-section {
    margin-bottom: 80px;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.approach-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.commitment-card {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
}

.commitment-card h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.commitment-card p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
}

.contact-info-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-image-card {
    flex: 1;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.directions-section {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.directions-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.visit-info-card {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.visit-info-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.visit-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.button-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.button-primary:hover {
    background-color: #1f4620;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.contact-reminder {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.contact-reminder p {
    font-size: 14px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        margin-right: 0;
        width: 100%;
    }

    .service-card {
        width: calc(50% - 15px);
    }

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

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

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

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

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

    .service-card {
        width: 100%;
    }

    .benefit-card,
    .value-card {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .about-story-card {
        flex-direction: column;
    }
}