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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5016;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    border: 1px solid #ddd;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a7c2c;
    color: #ffffff;
}

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

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

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

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

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

.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.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.intro-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.intro-wrapper h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.intro-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-title-offset {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-left: 6rem;
}

.section-title-offset h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.section-title-offset p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-stacked {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background-color: #ffffff;
}

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

.service-image {
    flex: 0 0 45%;
    background-color: #e8efe2;
}

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

.service-details {
    flex: 1;
    padding: 1rem 0;
}

.service-details h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.select-service-btn {
    background-color: #4a7c2c;
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.about-inline {
    padding: 5rem 2rem;
    background-color: #f4f7f1;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image {
    flex: 0 0 45%;
    background-color: #d9e5ce;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    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: #4a7c2c;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: #4a7c2c;
}

.submit-btn {
    background-color: #4a7c2c;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3d6623;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #e8efe2;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4a7c2c;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #3a3a3a;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

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

.page-hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
}

.about-main {
    padding: 3rem 2rem;
}

.about-text-block {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.about-text-block h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image-full {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #e8efe2;
}

.about-image-full img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-philosophy {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.about-philosophy h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
}

.philosophy-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.about-values {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c2c;
}

.about-values h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.about-values p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-detailed {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 5rem;
}

.service-detail-header {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

.service-detail-image {
    flex: 0 0 50%;
    background-color: #e8efe2;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.service-detail-intro h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2.5rem;
    color: #4a7c2c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-intro p {
    font-size: 1.1rem;
    color: #666;
}

.service-detail-content {
    padding: 2rem;
    background-color: #f9f9f9;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.services-cta {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content-center {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5016;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.contact-main {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

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

.contact-info-primary h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.contact-info-primary > p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c2c;
}

.contact-note p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 0 0 40%;
    background-color: #e8efe2;
    padding: 2rem;
    border-radius: 4px;
}

.map-info h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.map-info p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-next-steps {
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.thanks-next-steps ol {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: #4a7c2c;
    color: #ffffff;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6623;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #4a7c2c;
    border: 2px solid #4a7c2c;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 3rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.legal-intro {
    font-size: 1rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.7;
}

.legal-section strong {
    color: #2c2c2c;
}

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
    }

    .about-content-split {
        flex-direction: column;
    }

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

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

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

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

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

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

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