* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2c7a5e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1f5a45;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c7a5e;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 20px;
}

.nav-main {
    display: flex;
    gap: 30px;
}

.nav-main a {
    font-size: 15px;
    font-weight: 500;
    color: #34495e;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #2c7a5e;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a3a2e;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c6a;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c7a5e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1f5a45;
    transform: translateY(-2px);
    color: #ffffff;
}

.intro-split-reverse {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.intro-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-right img {
    width: 100%;
    height: 100%;
}

.intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.intro-left h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a3a2e;
    margin-bottom: 24px;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c6a;
    margin-bottom: 20px;
}

.services-grid {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #f8faf9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a3a2e;
    margin: 24px 24px 16px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c6a;
    margin: 0 24px 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c7a5e;
    margin: 0 24px 20px;
}

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

.btn-service:hover {
    background-color: #1f5a45;
}

.form-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
    background-color: #f8faf9;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.form-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c6a;
    margin-bottom: 32px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2c3e50;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #2c7a5e;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.form-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 60px;
    background-color: #ffffff;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

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

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

.trust-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    background-color: #ffffff;
}

.trust-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.trust-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 24px;
}

.trust-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c6a;
    margin-bottom: 20px;
}

.trust-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 60px;
    background-color: #f8faf9;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 400px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2c7a5e;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c6a;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f0f4f2;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.8;
    color: #6c7a78;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-main {
    background-color: #1a3a2e;
    color: #d4dbd8;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #d4dbd8;
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: #d4dbd8;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #a8b5b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 24px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #7fd4b8;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero-split {
    background-color: #2c7a5e;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-split {
    display: flex;
    min-height: 550px;
    align-items: stretch;
}

.about-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.about-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 24px;
}

.about-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c6a;
    margin-bottom: 20px;
}

.values-split-reverse {
    display: flex;
    min-height: 550px;
    align-items: stretch;
    background-color: #f8faf9;
}

.values-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.values-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 32px;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c7a5e;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c6a;
}

.values-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.values-right img {
    width: 100%;
    height: 100%;
}

.approach-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.approach-card {
    flex: 0 0 calc(50% - 15px);
    padding: 40px 36px;
    background-color: #f8faf9;
    border-radius: 8px;
}

.approach-number {
    font-size: 56px;
    font-weight: 800;
    color: #e5ebe7;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c6a;
}

.cta-split {
    background-color: #2c7a5e;
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.contact-info-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 60px;
    background-color: #f8faf9;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 12px;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c6a;
}

.contact-map-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 60px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #ffffff;
    border: 2px solid #d4dbd8;
}

.map-placeholder p {
    font-size: 18px;
    color: #5a6c6a;
}

.contact-additional {
    padding: 70px 0;
    background-color: #ffffff;
}

.contact-additional h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c6a;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8faf9;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c7a5e;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c6a;
    margin-bottom: 32px;
}

.selected-service-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #2c7a5e;
    font-weight: 600;
}

.thanks-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c6a;
    margin-bottom: 32px;
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 12px;
}

.legal-date,
.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a2e;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c7a5e;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c6a;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c6a;
    margin-bottom: 8px;
}

.services-detail {
    padding: 70px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 50px;
}

.service-detail-split,
.service-detail-split-reverse {
    display: flex;
    min-height: 450px;
    align-items: stretch;
    background-color: #f8faf9;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.service-detail-right h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 16px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c7a5e;
    margin-bottom: 20px;
}

.service-detail-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c6a;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c6a;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a5e;
    font-weight: 700;
}

.services-cta {
    padding: 80px 0;
    background-color: #f8faf9;
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: #5a6c6a;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split-reverse,
    .form-split,
    .trust-split,
    .about-split,
    .values-split-reverse,
    .contact-split,
    .service-detail-split,
    .service-detail-split-reverse {
        flex-direction: column;
    }

    .header-flex {
        flex-direction: column;
        gap: 16px;
    }

    .ad-disclosure {
        margin: 0;
    }

    .nav-main {
        gap: 20px;
    }

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

    .hero-lead {
        font-size: 18px;
    }

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

    .approach-card {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}