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

.ad-notice {
    background-color: #f4e8d3;
    color: #5a4a3a;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0d4c0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #5d7d5e;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #3d5a3e;
    margin: 3px 0;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9faf8;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2d4a2e;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #4a5f4b;
    max-width: 560px;
}

.cta-primary {
    background-color: #5a7d5b;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #4a6d4b;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-reversed {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2d4a2e;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #556856;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f4f6f4;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2d4a2e;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #5a6b5b;
}

.services-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 25px 25px 15px;
    color: #2d4a2e;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
    color: #5a6b5b;
    font-size: 0.98rem;
}

.price-tag {
    display: block;
    padding: 20px 25px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5a7d5b;
    border-top: 1px solid #e8ebe8;
}

.cta-centered {
    text-align: center;
}

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

.btn-secondary:hover {
    background-color: #5a7d5b;
    color: #ffffff;
}

.value-prop-split {
    display: flex;
    align-items: stretch;
}

.value-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.value-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2d4a2e;
}

.value-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #556856;
}

.value-list {
    list-style: none;
    margin: 30px 0;
}

.value-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #4a5f4b;
}

.value-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a7d5b;
    font-weight: 700;
    font-size: 1.3rem;
}

.disclaimer-text {
    font-size: 0.88rem;
    color: #7a8a7b;
    line-height: 1.5;
    margin-top: 30px;
    padding: 20px;
    background-color: #f7f9f7;
    border-left: 3px solid #b8c8b9;
}

.value-image {
    flex: 1;
    overflow: hidden;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #f9faf8;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2d4a2e;
}

.form-intro p {
    font-size: 1.05rem;
    color: #556856;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #5a7d5b;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #4a6d4b;
}

.main-footer {
    background-color: #2d4a2e;
    color: #d4dfd5;
    padding: 60px 40px 30px;
}

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

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

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

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

.footer-col a {
    display: block;
    color: #d4dfd5;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d5a3e;
    font-size: 0.9rem;
}

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

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

.cookie-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #b8d8b9;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #5a7d5b;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #4a6d4b;
}

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

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

.services-detail-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h1 {
    font-size: 2.8rem;
    color: #2d4a2e;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.15rem;
    color: #5a6b5b;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    margin-bottom: 60px;
    background-color: #f9faf8;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    align-items: stretch;
}

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

.service-item-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.service-item-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item-content h2 {
    font-size: 1.8rem;
    color: #2d4a2e;
    margin-bottom: 20px;
}

.service-item-content p {
    font-size: 1.05rem;
    color: #556856;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-item-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-item-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #4a5f4b;
}

.service-item-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5a7d5b;
    font-size: 1.5rem;
}

.service-price-box {
    display: inline-block;
    background-color: #5a7d5b;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 20px;
}

.cta-section {
    padding: 80px 40px;
    background-color: #e8ebe9;
    text-align: center;
}

.section-inner-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.section-inner-narrow h2 {
    font-size: 2.2rem;
    color: #2d4a2e;
    margin-bottom: 20px;
}

.section-inner-narrow p {
    font-size: 1.1rem;
    color: #556856;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #5a7d5b;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #4a6d4b;
}

.about-page {
    background-color: #ffffff;
}

.about-hero {
    padding: 100px 40px;
    background-color: #f4f6f4;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    color: #2d4a2e;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 1.15rem;
    color: #5a6b5b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content-split {
    display: flex;
    align-items: stretch;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2d4a2e;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    color: #556856;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.about-values-section {
    padding: 80px 40px;
    background-color: #f9faf8;
}

.section-inner-medium {
    max-width: 1100px;
    margin: 0 auto;
}

.section-inner-medium h2 {
    font-size: 2.2rem;
    color: #2d4a2e;
    margin-bottom: 50px;
    text-align: center;
}

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

.about-value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.about-value-card h3 {
    font-size: 1.4rem;
    color: #2d4a2e;
    margin-bottom: 15px;
}

.about-value-card p {
    font-size: 1rem;
    color: #556856;
    line-height: 1.7;
}

.about-commitment-split {
    display: flex;
    align-items: stretch;
}

.contact-page {
    padding: 100px 40px;
    background-color: #f9faf8;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 2.8rem;
    color: #2d4a2e;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.15rem;
    color: #5a6b5b;
}

.contact-info-split {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

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

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    color: #2d4a2e;
    margin-bottom: 15px;
}

.contact-info-item p {
    font-size: 1.05rem;
    color: #556856;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: #7a8a7b;
    margin-top: 10px;
}

.contact-info-box {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-box h2 {
    font-size: 1.8rem;
    color: #2d4a2e;
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 1.05rem;
    color: #556856;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-contact {
    display: inline-block;
    background-color: #5a7d5b;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #4a6d4b;
}

.contact-area-info {
    padding: 50px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.contact-area-info h2 {
    font-size: 1.8rem;
    color: #2d4a2e;
    margin-bottom: 20px;
}

.contact-area-info p {
    font-size: 1.05rem;
    color: #556856;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f9faf8;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    color: #5a7d5b;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #556856;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    background-color: #5a7d5b;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #4a6d4b;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    color: #3d5a3e;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #3d5a3e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 1.05rem;
    color: #556856;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #556856;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: #5a7d5b;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #4a6d4b;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-reversed,
    .value-prop-split,
    .form-wrapper-split,
    .about-content-split,
    .about-commitment-split,
    .contact-info-split {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .value-content,
    .form-intro,
    .form-container,
    .about-text,
    .contact-info-text {
        padding: 50px 30px;
    }

    .hero-image,
    .intro-image,
    .value-image,
    .about-image {
        min-height: 350px;
    }

    .service-item-image {
        flex: 0 0 300px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .about-values-grid {
        flex-direction: column;
    }

    .contact-info-split {
        flex-direction: column;
    }
}