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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 4px 8px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(58, 90, 35, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 600px;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d5016;
}

.intro-block p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #2d5016;
}

.split-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.split-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.visual-content-section {
    padding: 80px 20px;
}

.services-preview {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0 0 30px 0;
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h4 {
    font-size: 1.25rem;
    margin: 20px 20px 10px 20px;
    color: #2d5016;
}

.service-card p {
    padding: 0 20px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-price {
    padding: 0 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3a5a23;
}

.content-block-alt {
    padding: 80px 20px;
}

.content-block-alt h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #2d5016;
}

.content-block-alt p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.testimonial-section {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.testimonial {
    border-left: 4px solid #4a7c2c;
    padding-left: 30px;
    font-size: 1.2rem;
    font-style: italic;
}

.testimonial footer {
    margin-top: 15px;
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7280;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2d5016;
}

.form-section > div > p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

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

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

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

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

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

.btn-submit {
    background-color: #3a5a23;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #2d5016;
}

.info-strip {
    padding: 40px 20px;
    color: #ffffff;
    text-align: center;
}

.info-strip p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 20px 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    font-size: 0.85rem;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    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;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #93c5fd;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #3a5a23;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #4b5563;
    color: #ffffff;
}

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

.page-header {
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}

.content-section {
    padding: 60px 20px;
}

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

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2d5016;
}

.content-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.image-content-section {
    padding: 0;
}

.wide-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.wide-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 80px 20px;
}

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

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

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

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3a5a23;
}

.value-item p {
    font-size: 1rem;
}

.team-section {
    padding: 60px 20px;
    background-color: #fafafa;
}

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

.team-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.cta-section {
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5016;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background-color: #f3f4f6;
}

.services-detailed {
    padding: 40px 20px;
}

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.feature-list {
    margin: 25px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.price-block {
    margin-top: 25px;
    padding: 20px;
    background-color: #f4f7f1;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.95rem;
    color: #6b7280;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.pricing-note {
    padding: 60px 20px;
}

.pricing-note h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #2d5016;
}

.pricing-note p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.contact-info-section {
    padding: 60px 20px;
}

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

.contact-details {
    flex: 1;
}

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

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

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #3a5a23;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: #4b5563;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #2d5016;
}

.contact-text p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.info-block {
    padding: 60px 20px;
}

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

.info-block p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.directions-section {
    padding: 60px 20px;
}

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

.directions-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f9fafb;
}

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

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

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2d5016;
}

.next-steps {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-confirm {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.service-confirm p {
    background-color: #f4f7f1;
    padding: 15px;
    border-radius: 6px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #3a5a23;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2d5016;
}

.btn-secondary {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.additional-info {
    padding: 60px 20px;
}

.additional-info h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: #2d5016;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3a5a23;
}

.faq-item p {
    font-size: 1rem;
    color: #4b5563;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2d5016;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #3a5a23;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #4a7c2c;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 20px;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.legal-content a {
    color: #3a5a23;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2d5016;
}

.legal-content em {
    color: #6b7280;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid #d1d5db;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #2d5016;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .split-layout,
    .service-detail-block,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

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