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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-section {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #7ba05b;
}

.hero-overlay {
    background-color: rgba(45, 80, 22, 0.75);
    width: 100%;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #5a9234;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background-color: #4a7c2a;
    transform: translateY(-2px);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.alt-bg {
    background-color: #f4f7f0;
}

.values-section {
    padding: 90px 0;
}

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.value-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8f0e1;
}

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

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

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #2d5016;
    text-align: center;
}

.services-preview > .content-wrapper > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

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

.service-item {
    background-color: #f9faf7;
    padding: 36px;
    border-radius: 8px;
    border-left: 5px solid #5a9234;
    transition: border-color 0.3s ease;
}

.service-item:hover {
    border-color: #2d5016;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2d5016;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #5a9234;
}

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

.cta-link {
    display: inline-block;
    color: #5a9234;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #5a9234;
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.cta-link:hover {
    color: #2d5016;
    border-color: #2d5016;
}

.approach-section {
    padding: 90px 0;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f0e1;
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.split-content a {
    color: #5a9234;
    text-decoration: underline;
}

.testimonials-section {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.testimonial-grid {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #f9faf7;
    padding: 32px;
    border-radius: 8px;
    border-top: 4px solid #5a9234;
}

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

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: #777;
}

.form-section {
    padding: 90px 0;
}

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

.form-section > .content-wrapper > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 44px;
    color: #555;
}

.main-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 44px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    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: #5a9234;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9f0;
}

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

.references-section {
    padding: 50px 0;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d5016;
}

.reference-list {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
}

.reference-list li {
    margin-bottom: 12px;
}

.reference-list a {
    color: #5a9234;
    text-decoration: underline;
}

.main-footer {
    background-color: #2d5016;
    color: #e8f0e1;
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(232, 240, 225, 0.2);
    font-size: 14px;
    color: #c5d4b8;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px 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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background-color: #5a9234;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #4a7c2a;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-hero {
    padding: 80px 0;
    background-color: #f4f7f0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #555;
}

.about-intro {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-section {
    padding: 90px 0;
}

.values-detail {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-block {
    background-color: #f9faf7;
    padding: 36px;
    border-radius: 8px;
    border-left: 5px solid #5a9234;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #2d5016;
}

.value-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.team-section {
    padding: 90px 0;
}

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

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-image-container {
    margin-top: 48px;
}

.team-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f0e1;
}

.approach-detail {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.step-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.step-number {
    background-color: #5a9234;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2d5016;
}

.step-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.cta-section {
    padding: 90px 0;
    background-color: #f4f7f0;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.services-intro {
    padding: 60px 0 30px;
    background-color: #ffffff;
}

.services-intro p {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detail {
    background-color: #ffffff;
}

.service-detailed {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-content a {
    color: #5a9234;
    text-decoration: underline;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a9234;
    font-weight: 700;
    font-size: 18px;
}

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #5a9234;
    margin-top: 24px;
}

.service-image {
    flex: 1;
}

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

.service-cta {
    padding: 80px 0;
    background-color: #f4f7f0;
    text-align: center;
}

.service-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5016;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.contact-main {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5016;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.email-display {
    color: #2c3e50;
    font-weight: 500;
}

.info-note {
    background-color: #f9faf7;
    padding: 20px;
    border-radius: 6px;
    margin-top: 24px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2d5016;
}

.contact-form-wrapper p {
    font-size: 16px;
    margin-bottom: 28px;
    color: #555;
}

.contact-form {
    background-color: #f9faf7;
    padding: 36px;
    border-radius: 8px;
}

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

.map-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d5016;
    text-align: center;
}

.map-section p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 36px;
    color: #555;
}

.map-placeholder {
    background-color: #e8f0e1;
    padding: 100px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    color: #2d5016;
}

.thanks-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.thanks-section .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content > p {
    font-size: 19px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f9faf7;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 36px;
}

.thanks-details p {
    font-size: 17px;
    color: #444;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #2d5016;
}

.thanks-next p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f0e1;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5016;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d5016;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #5a9234;
    text-decoration: underline;
}

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

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

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

    .split-layout,
    .split-layout.reverse,
    .service-detailed,
    .service-detailed.reverse,
    .contact-layout,
    .thanks-section .content-wrapper {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}