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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc5a;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --border-color: #e0e4d9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--bg-light);
    color: var(--text-medium);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

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

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

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

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

.hero-image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-color: #c8d4b8;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(107, 142, 35, 0.75) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay .container {
    text-align: center;
    color: var(--bg-white);
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    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: var(--accent-color);
    color: var(--text-dark);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

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

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

.intro-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.services-preview {
    padding: 80px 0;
}

.section-header-left {
    margin-bottom: 48px;
}

.section-header-left h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-header-left p {
    font-size: 18px;
    color: var(--text-medium);
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.service-image {
    width: 45%;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #d4e0c8;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

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

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.service-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-color);
}

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

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

.values-content {
    flex: 1;
}

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

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

.values-list {
    list-style: none;
    margin-top: 24px;
}

.values-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.values-image {
    width: 45%;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #d4e0c8;
    flex-shrink: 0;
}

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

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

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

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 24px;
}

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

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

.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;
    background-color: var(--bg-white);
}

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

.submit-button {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: var(--primary-color);
}

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

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

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

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

.main-footer {
    background-color: #1e3610;
    color: #e8efe0;
    padding: 60px 0 24px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col a {
    display: block;
    color: #c8d9bc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #c8d9bc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: #b0c4a4;
    font-size: 14px;
}

.disclaimer {
    margin-top: 16px;
    font-size: 13px;
    color: #9db591;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    z-index: 1000;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
    font-size: 15px;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

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

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

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

.cookie-btn.reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

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

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

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

.page-hero p {
    font-size: 19px;
    color: var(--text-medium);
}

.about-intro {
    padding: 80px 0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.about-image {
    width: 42%;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #d4e0c8;
    flex-shrink: 0;
}

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

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

.mission-section p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.values-detailed {
    padding: 80px 0;
}

.values-detailed h2 {
    font-size: 34px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
}

.values-stack-alt {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-block {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

.approach-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.approach-image {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #d4e0c8;
    flex-shrink: 0;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.cta-section-simple {
    padding: 80px 0;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-section-simple p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

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

.price-large {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 24px 0 12px;
}

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

.service-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-medium);
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-detail-image {
    width: 40%;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #d4e0c8;
    flex-shrink: 0;
}

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

.services-cta h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

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

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

.contact-info-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-medium);
}

.contact-visual {
    width: 45%;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #d4e0c8;
    flex-shrink: 0;
}

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

.contact-approach h2 {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    flex-shrink: 0;
}

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

.process-step p {
    font-size: 16px;
    color: var(--text-medium);
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item h3 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
}

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

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

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

.thanks-info {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.thanks-info p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.secondary-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

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

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

.legal-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 36px 0 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 24px 0 12px;
}

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

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

.legal-content li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.legal-date {
    margin-top: 48px;
    font-style: italic;
    color: var(--text-light);
}

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

    .main-nav {
        gap: 16px;
    }

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

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

    .service-card,
    .service-card.reverse,
    .values-split,
    .about-content-split,
    .approach-split-reverse,
    .contact-layout,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-image,
    .values-image,
    .about-image,
    .approach-image,
    .contact-visual,
    .service-detail-image {
        width: 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .form-row {
        flex-direction: column;
    }
}