* {
    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: #333;
    background-color: #fff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #fff;
    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;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #4a7c23;
}

.hero-section {
    background-color: #f5f7f3;
    padding: 80px 30px;
}

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

.hero-content h1 {
    font-size: 52px;
    color: #2d5016;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

.hero-image {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8ece4;
}

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

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

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.intro-visual {
    flex: 1;
    background-color: #f5f7f3;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.benefits-section {
    background-color: #4a7c23;
    padding: 90px 30px;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.benefit-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 24px;
    color: #2d5016;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.services-overview {
    background-color: #fff;
    padding: 100px 30px;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 19px;
    color: #666;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 18px;
}

.service-details p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c23;
    margin: 24px 0;
}

.select-service {
    background-color: #4a7c23;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    background-color: #f5f7f3;
    padding: 80px 30px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 50px;
}

.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #fff;
    padding: 40px 35px;
    border-left: 4px solid #4a7c23;
}

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

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

.form-section {
    background-color: #2d5016;
    padding: 100px 30px;
}

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

.form-container h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    color: #d4e5c7;
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #4a7c23;
    border-radius: 4px;
    background-color: #fff;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: #6aa82f;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #5a8f28;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 60px 30px;
}

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

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #6aa82f;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px 30px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    color: #333;
}

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

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

.cookie-btn.accept {
    background-color: #4a7c23;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #333;
}

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

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

.page-header h1 {
    font-size: 48px;
    color: #2d5016;
    margin-bottom: 16px;
}

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

.about-story {
    padding: 100px 30px;
    background-color: #fff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.story-content h2 {
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 28px;
}

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

.story-image {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f5f7f3;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.mission-section {
    background-color: #f5f7f3;
    padding: 90px 30px;
}

.mission-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-wrapper h2 {
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 50px;
    text-align: center;
}

.mission-points {
    display: flex;
    gap: 40px;
}

.mission-item {
    flex: 1;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 6px;
}

.mission-item h3 {
    font-size: 24px;
    color: #4a7c23;
    margin-bottom: 16px;
}

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

.locations-section {
    background-color: #fff;
    padding: 90px 30px;
}

.locations-section h2 {
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.locations-section > p {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.locations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-card {
    flex: 1;
    min-width: 250px;
    background-color: #f5f7f3;
    padding: 35px 28px;
    border-radius: 6px;
}

.location-card h3 {
    font-size: 22px;
    color: #2d5016;
    margin-bottom: 12px;
}

.location-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    background-color: #4a7c23;
    padding: 80px 30px;
}

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

.team-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 28px;
    text-align: center;
}

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

.detailed-services {
    background-color: #fff;
    padding: 80px 30px;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #f5f7f3;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

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

.service-detail-info h2 {
    font-size: 34px;
    color: #2d5016;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #4a7c23;
    margin-bottom: 20px;
}

.service-detail-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-info h3 {
    font-size: 20px;
    color: #2d5016;
    margin-bottom: 14px;
    margin-top: 28px;
}

.service-detail-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-info ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-detail-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c23;
    font-weight: 700;
}

.additional-services {
    background-color: #f5f7f3;
    padding: 80px 30px;
}

.additional-services h2 {
    font-size: 38px;
    color: #2d5016;
    text-align: center;
    margin-bottom: 50px;
}

.addon-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.addon-card {
    flex: 1;
    background-color: #fff;
    padding: 35px 28px;
    border-radius: 6px;
    text-align: center;
}

.addon-card h3 {
    font-size: 22px;
    color: #2d5016;
    margin-bottom: 14px;
}

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

.addon-price {
    font-size: 20px;
    font-weight: 700;
    color: #4a7c23;
}

.cta-services {
    background-color: #2d5016;
    padding: 80px 30px;
}

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

.cta-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 18px;
}

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

.cta-button {
    display: inline-block;
    background-color: #6aa82f;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #5a8f28;
}

.contact-info-section {
    background-color: #fff;
    padding: 80px 30px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 20px;
    color: #4a7c23;
    margin-bottom: 12px;
}

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

.contact-visual {
    flex: 1;
    background-color: #f5f7f3;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.location-info {
    background-color: #f5f7f3;
    padding: 80px 30px;
}

.location-info h2 {
    font-size: 34px;
    color: #2d5016;
    text-align: center;
    margin-bottom: 24px;
}

.location-info > p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.directions {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.direction-item {
    flex: 1;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 6px;
}

.direction-item h3 {
    font-size: 20px;
    color: #4a7c23;
    margin-bottom: 12px;
}

.direction-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

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

.visit-content h2 {
    font-size: 34px;
    color: #2d5016;
    margin-bottom: 24px;
}

.visit-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-section {
    background-color: #f5f7f3;
    padding: 100px 30px;
    min-height: 70vh;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service {
    background-color: #fff;
    padding: 20px;
    border-left: 4px solid #4a7c23;
    margin-bottom: 50px;
    font-size: 17px;
    color: #333;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 6px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4a7c23;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    color: #2d5016;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.back-button,
.secondary-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.back-button {
    background-color: #4a7c23;
    color: #fff;
}

.back-button:hover {
    background-color: #3a6119;
}

.secondary-button {
    background-color: #e9ecef;
    color: #333;
}

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

.legal-page {
    background-color: #fff;
    padding: 60px 30px 100px;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 12px;
}

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

.legal-container h2 {
    font-size: 26px;
    color: #2d5016;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-container h3 {
    font-size: 20px;
    color: #4a7c23;
    margin-top: 28px;
    margin-bottom: 14px;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.url-display {
    color: #4a7c23;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .section-wrapper,
    .service-item,
    .service-detail-block,
    .contact-wrapper,
    .testimonials-wrapper,
    .benefits-grid,
    .mission-points,
    .addon-grid,
    .directions,
    .steps-grid {
        flex-direction: column;
    }

    .service-item:nth-child(even),
    .service-detail-block.reverse {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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