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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    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.08);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #2d5a3d;
}

.hero-section {
    position: relative;
    height: 600px;
    background-color: #e8f5e9;
}

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

.hero-image-container 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(45, 90, 61, 0.7), rgba(45, 90, 61, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 36px;
    max-width: 700px;
}

.cta-primary {
    background-color: #ffffff;
    color: #2d5a3d;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.intro-section {
    background-color: #ffffff;
    padding: 100px 30px;
}

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

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2d5a3d;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.visual-break {
    background-color: #f8faf9;
    padding: 120px 30px;
}

.split-visual {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.visual-left {
    flex: 1;
}

.visual-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.visual-right {
    flex: 1;
}

.visual-right h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2d5a3d;
}

.visual-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
}

.services-overview {
    background-color: #ffffff;
    padding: 100px 30px;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5a3d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #f8faf9;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h4 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #2d5a3d;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: #4a5568;
}

.price-tag {
    padding: 0 24px 16px;
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
}

.service-select {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #1f4029;
}

.trust-section {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 100px 30px;
}

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

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

.testimonials blockquote {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.testimonials p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonials cite {
    font-size: 14px;
    font-style: normal;
    opacity: 0.8;
}

.process-section {
    background-color: #f8faf9;
    padding: 100px 30px;
}

.process-visual {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-text {
    flex: 1.2;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2d5a3d;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
    margin: 30px 0;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 24px;
    font-size: 17px;
    color: #4a5568;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2d5a3d;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

.process-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.form-section {
    background-color: #ffffff;
    padding: 100px 30px;
}

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

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f8faf9;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1f4029;
}

.disclaimer-section {
    background-color: #f8faf9;
    padding: 60px 30px;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #1f4029;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #d0d0d0;
}

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

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

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.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: 15px;
}

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

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

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

.btn-cookie:hover {
    background-color: #1f4029;
}

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

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

.page-hero {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 100px 30px 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    background-color: #ffffff;
    padding: 100px 30px;
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2d5a3d;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-section {
    background-color: #f8faf9;
    padding: 100px 30px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5a3d;
}

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

.value-item {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

.team-section {
    background-color: #ffffff;
    padding: 100px 30px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2d5a3d;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.approach-section {
    background-color: #f8faf9;
    padding: 100px 30px;
}

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

.content-left {
    flex: 1;
}

.content-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-right {
    flex: 1;
}

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

.content-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
}

.location-section {
    background-color: #ffffff;
    padding: 100px 30px;
}

.location-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2d5a3d;
}

.location-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-detailed {
    padding: 60px 30px;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.service-info h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-info ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-info ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a5568;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 24px 0;
}

.service-cta {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1f4029;
}

.additional-info {
    background-color: #f8faf9;
    padding: 80px 30px;
}

.additional-info h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2d5a3d;
}

.additional-info p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
}

.contact-main {
    padding: 60px 30px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 34px;
    margin-bottom: 36px;
    color: #2d5a3d;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5a3d;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

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

.contact-note p {
    font-size: 15px;
    color: #6c757d;
}

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

.contact-info-extra h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.contact-info-extra p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

.contact-info-extra ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.contact-info-extra ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a5568;
}

.location-info {
    background-color: #f8faf9;
    padding: 80px 30px;
}

.location-info h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2d5a3d;
}

.location-info p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
}

.area-list {
    list-style-position: inside;
    margin-bottom: 24px;
}

.area-list li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #4a5568;
}

.faq-section {
    background-color: #ffffff;
    padding: 80px 30px;
}

.faq-section h2 {
    font-size: 34px;
    margin-bottom: 36px;
    color: #2d5a3d;
}

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 30px;
    min-height: 600px;
}

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

.success-icon {
    font-size: 72px;
    color: #2d5a3d;
    margin-bottom: 24px;
}

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

.lead-text {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #f8faf9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #2d5a3d;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.steps-list {
    list-style-position: inside;
    padding-left: 20px;
}

.steps-list li {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f4029;
}

.btn-secondary {
    background-color: #f8faf9;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.contact-reminder {
    font-size: 15px;
    color: #6c757d;
}

.legal-page {
    padding: 60px 30px 100px;
}

.legal-intro {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-page a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1f4029;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .split-visual,
    .process-visual,
    .split-content,
    .contact-layout,
    .service-block {
        flex-direction: column;
    }

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

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

    .service-card {
        width: 100%;
    }

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

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