* {
    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: #fafafa;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-primary a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #3a5a2a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #ffffff;
}

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

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.8;
}

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

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.section-header-left {
    margin-bottom: 3rem;
}

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

.section-header-left p {
    font-size: 1.15rem;
    color: #666;
}

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #3a5a2a;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 1.5rem;
}

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

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

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

.btn-select-service {
    background-color: #4a7c2c;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #d0d0d0;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.form-intro {
    margin-bottom: 2rem;
    color: #555;
}

.selected-service-display {
    background-color: #f0f8ec;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #4a7c2c;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display h3 {
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.selected-service-display p {
    color: #555;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.trust-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.trust-section p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a7c2c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.cta-final {
    background-color: #2d5016;
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

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

.btn-primary-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5016;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #e8f0e1;
}

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

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

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

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

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col p {
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #252525;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2d5016;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    background-color: #2d5016;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: #3a5a2a;
}

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

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

.about-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #4a7c2c;
}

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

.value-item p {
    color: #555;
    line-height: 1.7;
}

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

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

.experience-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.approach-section {
    background-color: #e8f0e1;
    padding: 5rem 2rem;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a7c2c;
    flex-shrink: 0;
    opacity: 0.3;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.step-item p {
    color: #555;
    line-height: 1.7;
}

.cta-section {
    background-color: #2d5016;
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

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

.services-detail-section {
    padding: 3rem 2rem;
    background-color: #fafafa;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    padding: 2rem;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    height: 400px;
    overflow: hidden;
    background-color: #3a5a2a;
}

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

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

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

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #555;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c2c;
    font-weight: 700;
}

.service-detail-price {
    margin: 2rem 0 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
    margin-right: 0.5rem;
}

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

.services-cta {
    background-color: #2d5016;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

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

.contact-item {
    margin-bottom: 2rem;
}

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

.contact-item p {
    color: #555;
    line-height: 1.8;
}

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

.contact-note p {
    color: #555;
    margin: 0;
}

.contact-image-block {
    flex: 1;
    height: 500px;
    overflow: hidden;
    background-color: #3a5a2a;
}

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

.additional-info-section {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.additional-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.additional-info-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #ffffff;
}

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

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

.thanks-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-confirmation {
    background-color: #f0f8ec;
    padding: 1.5rem;
    margin: 2rem auto;
    border-left: 4px solid #4a7c2c;
    max-width: 600px;
    display: none;
}

.service-confirmation.active {
    display: block;
}

.service-confirmation h3 {
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.service-confirmation p {
    color: #555;
    margin: 0;
}

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

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

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

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

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

.next-steps-section {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.next-steps-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5016;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item-thanks {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number-small {
    background-color: #4a7c2c;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.step-text p {
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d5016;
}

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

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #555;
}

.legal-page a {
    color: #4a7c2c;
    text-decoration: underline;
}

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

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

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

    .nav-primary {
        gap: 1rem;
    }

    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .contact-image-block {
        width: 100%;
        height: 300px;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
        width: 100%;
        height: 300px;
    }

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

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