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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2d3436;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2d5016;
}

.ad-disclosure {
    font-size: 11px;
    color: #636e72;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2d5016;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    max-width: 680px;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 20px;
    color: #f0f0f0;
    max-width: 520px;
}

.intro-section {
    background-color: #f9f9f9;
    padding: 100px 24px;
}

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

.intro-section h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 32px;
    font-weight: 700;
}

.intro-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 24px;
}

.services-preview {
    padding: 120px 24px;
    background-color: #ffffff;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #2d5016;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 42px;
    color: #2d3436;
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-info p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 18px;
    color: #2d5016;
    font-weight: 700;
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
}

.btn-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #3d6a1f;
    transform: translateY(-2px);
}

.philosophy-section {
    background-color: #f4f4f4;
    padding: 100px 24px;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 28px;
    font-weight: 700;
}

.text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    background-color: #e0e0e0;
}

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

.form-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #2d5016;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #3d6a1f;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 100px 24px;
    background-color: #f9f9f9;
}

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

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-left: 4px solid #2d5016;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #2d3436;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #636e72;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #fff8e1;
    border-top: 2px solid #ffd54f;
    border-bottom: 2px solid #ffd54f;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 60px 24px 30px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    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.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 40px;
}

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

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

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

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.cookie-btn.reject {
    background-color: #636e72;
    color: #ffffff;
}

.page-header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    padding: 80px 24px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 24px;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-story p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 24px;
}

.team-image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.approach-section {
    padding: 100px 24px;
    background-color: #f9f9f9;
}

.approach-section h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 28px;
    font-weight: 700;
}

.approach-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 24px;
}

.values-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 38px;
    color: #2d3436;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    padding: 36px;
    background-color: #f9f9f9;
    border-top: 4px solid #2d5016;
}

.value-item h3 {
    font-size: 22px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #636e72;
}

.numbers-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 100px 24px;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 40px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

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

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

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

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

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0 20px 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 8px;
}

.service-detail-price {
    font-size: 19px;
    color: #2d5016;
    font-weight: 700;
}

.contact-content {
    padding: 80px 24px;
}

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

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

.contact-info-block h2 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2d5016;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.contact-map-placeholder {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-cta {
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #2d5016;
}

.contact-cta h2 {
    font-size: 26px;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-content {
    padding: 120px 24px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

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

.thanks-icon svg {
    color: #2d5016;
}

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

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 24px;
}

.thanks-note {
    font-size: 14px;
    color: #888888;
    font-style: italic;
}

#selected-service-display {
    margin: 24px 0;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.legal-content {
    padding: 60px 24px 100px 24px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    color: #2d3436;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: #2d3436;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-container p,
.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 16px;
}

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

.legal-container a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #3d6a1f;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
        margin: 12px 0;
    }

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

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

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}