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

:root {
    --primary-color: #2a7f62;
    --primary-dark: #1f5f49;
    --secondary-color: #4a5568;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --accent-color: #d4af37;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.hero-text-wrapper {
    max-width: 600px;
}

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

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

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 127, 98, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

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

h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-overview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 12px;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
    display: flex;
}

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

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.form-left {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    color: var(--bg-white);
    margin-bottom: 24px;
}

.form-intro p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.form-right {
    flex: 1;
    padding: 60px 50px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.trust-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-white);
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

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

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

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

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: var(--bg-light);
}

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

.hero-visual-right {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.story-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.story-section h2 {
    margin-bottom: 32px;
}

.story-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.values-split {
    display: flex;
    min-height: 500px;
}

.split-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.split-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.split-visual img {
    width: 100%;
    height: 100%;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-overview {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title-center {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle-center {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-description {
    flex: 1;
}

.team-description p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.team-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.approach-split {
    display: flex;
    min-height: 500px;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

.cta-centered {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-centered h2 {
    margin-bottom: 20px;
}

.cta-centered p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.page-intro-centered {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.services-detailed {
    padding: 60px 0 80px;
    background-color: var(--bg-white);
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    min-height: 500px;
}

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

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

.service-detail-content h2 {
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.service-pricing-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.service-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-form-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-form-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-intro-centered {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-main-split {
    display: flex;
    min-height: 500px;
}

.contact-info-side {
    flex: 1;
    padding: 60px 50px;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-block h2 {
    margin-bottom: 32px;
}

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

.info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-visual-side {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.contact-cta-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-cta-section h2 {
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    margin-bottom: 24px;
}

.thanks-section .lead {
    margin-bottom: 48px;
}

.service-confirmation {
    margin-bottom: 48px;
}

.selected-service-box {
    display: inline-block;
    background-color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 48px;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .page-hero-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-main-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

    .team-split-layout {
        flex-direction: column;
    }

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

    .navigation {
        width: 100%;
        justify-content: space-between;
    }

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

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

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .hero-left,
    .split-content,
    .form-left,
    .form-right,
    .hero-content-left,
    .split-text,
    .service-detail-content,
    .contact-info-side {
        padding: 40px 24px;
    }

    .navigation {
        gap: 16px;
    }

    .navigation a {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}
