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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a5a40;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-right a:hover {
    color: #3a5a40;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.7rem;
    background-color: #f8f9fa;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2a3a;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.3rem;
    color: #4a5a6a;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3a5a40;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #588157;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #3a5a40;
    transform: translateY(-2px);
}

.intro-offset {
    padding: 5rem 4%;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #1a2a3a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #4a5a6a;
    margin-bottom: 1.2rem;
}

.features-alternating {
    background-color: #f8f9fa;
}

.feature-row {
    display: flex;
    min-height: 500px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
    background-color: #ffffff;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
    color: #1a2a3a;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.1rem;
    color: #4a5a6a;
    line-height: 1.7;
}

.services-selection {
    padding: 6rem 4%;
    background-color: #ffffff;
}

.services-selection h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a2a3a;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5a6a;
    margin-bottom: 3.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card.selected {
    border-color: #3a5a40;
    box-shadow: 0 4px 12px rgba(58, 90, 64, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2a3a;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #4a5a6a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3a5a40;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 1.5rem;
    background-color: #588157;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #3a5a40;
    transform: translateY(-1px);
}

.btn-select:active {
    transform: translateY(0);
}

.form-section {
    padding: 6rem 4%;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a2a3a;
    font-weight: 700;
}

.form-container p {
    font-size: 1.1rem;
    color: #4a5a6a;
    margin-bottom: 2.5rem;
}

.quote-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-notice {
    padding: 1rem 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    margin-bottom: 2rem;
    color: #856404;
    font-size: 0.95rem;
}

.form-notice.hidden {
    display: none;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #3a5a40;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #2c4530;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

.trust-section {
    padding: 5rem 4%;
    background-color: #3a5a40;
    color: #ffffff;
}

.trust-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.link-inline {
    color: #a3b18a;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #dad7cd;
}

.footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 4rem 4% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
}

.footer-section {
    flex: 1 1 220px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2a3a;
    color: #ffffff;
    padding: 1.5rem 4%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #2c4530;
    transform: translateY(-1px);
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6a7a;
    transform: translateY(-1px);
}

.page-header {
    padding: 4rem 4%;
    background-color: #3a5a40;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-split {
    display: flex;
    min-height: 600px;
}

.about-left {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.about-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a2a3a;
    font-weight: 700;
}

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

.about-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 6rem 4%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a2a3a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3a5a40;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5a6a;
    line-height: 1.6;
}

.process-section {
    padding: 6rem 4%;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a2a3a;
    font-weight: 700;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3a5a40;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #1a2a3a;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    color: #4a5a6a;
    line-height: 1.6;
}

.cta-section-alt {
    padding: 5rem 4%;
    background-color: #588157;
    color: #ffffff;
    text-align: center;
}

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

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

.services-detailed {
    background-color: #ffffff;
}

.service-detail-row {
    display: flex;
    min-height: 550px;
}

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

.service-detail-content {
    flex: 1;
    padding: 4.5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.3rem;
    color: #1a2a3a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5a6a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 1rem;
    color: #4a5a6a;
    margin-bottom: 0.6rem;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-price-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #3a5a40;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #3a5a40;
}

.contact-split {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
    padding: 5rem 6%;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    color: #1a2a3a;
    font-weight: 700;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.contact-detail {
    font-size: 1.1rem;
    color: #4a5a6a;
    line-height: 1.8;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3a5a40;
}

.contact-note p {
    font-size: 0.95rem;
    color: #4a5a6a;
    margin: 0;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.location-section {
    padding: 4rem 4%;
    background-color: #f8f9fa;
    text-align: center;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2a3a;
    font-weight: 700;
}

.location-section p {
    font-size: 1.1rem;
    color: #4a5a6a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    min-height: 70vh;
    background-color: #ffffff;
}

.thanks-content {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #3a5a40;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5a6a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3a5a40;
    margin-bottom: 2.5rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a2a3a;
    font-weight: 700;
}

.thanks-next ul {
    padding-left: 1.5rem;
}

.thanks-next li {
    font-size: 1.05rem;
    color: #4a5a6a;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.thanks-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 4% 6rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2a3a;
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #3a5a40;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a5a6a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #4a5a6a;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-page a {
    color: #3a5a40;
    text-decoration: underline;
}

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

@media (max-width: 900px) {
    .hero-split,
    .about-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-left,
    .about-left,
    .contact-info-block,
    .thanks-content {
        padding: 3rem 6%;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-right,
    .about-right,
    .contact-visual,
    .thanks-visual {
        min-height: 350px;
    }

    .feature-row,
    .service-detail-row {
        flex-direction: column;
    }

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

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

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

    .values-grid,
    .process-steps {
        gap: 2rem;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .services-grid {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }
}