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

:root {
    --primary-color: #2a5934;
    --secondary-color: #4a7856;
    --accent-color: #8b9d83;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #d4d9d2;
}

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

.ad-disclosure {
    background-color: #ffe8a1;
    color: #5c4000;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #e6d089;
}

.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.main-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 24px 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.hero-image {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.intro-block h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

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

.text-column {
    flex: 1;
}

.text-column h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.text-column p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--light-text);
}

.image-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--accent-color);
}

.services-preview {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--light-text);
    margin: 0 20px 16px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 20px 16px;
}

.service-card button {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: var(--secondary-color);
}

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

.inquiry-form-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.inquiry-form-section > div > p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 17px;
}

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

.selected-service-notice {
    background-color: #e8f5e9;
    border: 1px solid var(--accent-color);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.selected-service-notice p {
    color: var(--primary-color);
    font-size: 16px;
    margin: 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.submit-btn:hover {
    background-color: var(--secondary-color);
}

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

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

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

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: var(--light-text);
}

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

.disclaimer-text {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.site-footer {
    background-color: var(--dark-text);
    color: #c4c4c4;
    padding: 50px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #c4c4c4;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: #8a8a8a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

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

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

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

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.reject {
    background-color: #5a5a5a;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #6a6a6a;
}

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

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

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

.about-content {
    padding: 60px 0;
}

.content-block {
    margin-bottom: 60px;
}

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

.content-block p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 16px;
}

.timeline-section {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.timeline-section h3 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-item .year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-item .event h4 {
    font-size: 20px;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.timeline-item .event p {
    font-size: 16px;
    color: var(--light-text);
}

.expertise-block,
.team-values,
.commitment-section {
    margin-bottom: 60px;
}

.expertise-block h3,
.team-values h3,
.commitment-section h3 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-block p,
.commitment-section p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 16px;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: var(--light-text);
}

.services-detailed {
    padding: 60px 0;
}

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

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

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

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.price-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 13px;
    color: var(--light-text);
    margin: 0;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: var(--secondary-color);
}

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

.service-benefits h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

.benefit-item p {
    font-size: 16px;
    color: var(--light-text);
}

.contact-content {
    padding: 60px 0;
}

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

.contact-info-block,
.contact-map-block {
    flex: 1;
}

.info-section {
    margin-bottom: 40px;
}

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

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

.email-display {
    font-weight: 600;
    color: var(--dark-text);
}

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

.emergency-note {
    background-color: #fff4e5;
    padding: 12px;
    border-left: 3px solid #ff9800;
    margin-top: 12px;
}

.hours-table {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
    color: var(--dark-text);
}

.hours-row .time {
    color: var(--light-text);
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    background-color: var(--bg-light);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.85);
    color: white;
    padding: 16px;
}

.map-overlay p {
    margin: 0;
    font-size: 15px;
}

.additional-info h3,
.response-times h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.additional-info ul {
    list-style-position: inside;
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.8;
}

.additional-info,
.response-times {
    margin-bottom: 30px;
}

.response-item {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.response-item strong {
    color: var(--primary-color);
    font-size: 16px;
}

.response-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--light-text);
}

.service-areas {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    margin-top: 60px;
}

.service-areas h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-areas > p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 30px;
}

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

.area-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 6px;
}

.area-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.area-item p {
    font-size: 15px;
    color: var(--light-text);
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

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

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

.service-confirmation {
    margin-bottom: 30px;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.selected-service-box p {
    font-size: 17px;
    color: var(--dark-text);
    margin: 0;
}

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

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

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: left;
}

.step-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.step-item p {
    font-size: 15px;
    color: var(--light-text);
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.emergency-notice {
    background-color: #fff4e5;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    text-align: left;
    margin-top: 40px;
}

.emergency-notice h3 {
    font-size: 20px;
    color: #f57c00;
    margin-bottom: 12px;
}

.emergency-notice p {
    font-size: 15px;
    color: var(--light-text);
    margin: 0;
}

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

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

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

.legal-page h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    color: var(--dark-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--light-text);
}

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

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

    .hero-content p {
        font-size: 17px;
    }

    .split-content,
    .service-detail-item,
    .contact-layout,
    .steps-grid,
    .areas-list {
        flex-direction: column;
    }

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

    .service-cards,
    .trust-grid,
    .values-grid,
    .benefits-grid,
    .footer-columns {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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