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

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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2f855a;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 12px;
    color: #718096;
    padding: 4px 12px;
    background-color: #f7fafc;
    border-radius: 4px;
    margin: 0 auto;
}

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

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

.nav a:hover {
    color: #2f855a;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f0fff4;
}

.hero-right {
    flex: 1;
    background-color: #c6f6d5;
    overflow: hidden;
}

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

.hero-text-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2f855a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #2f855a;
    text-decoration: none;
    border: 2px solid #2f855a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2f855a;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.content-block {
    flex: 1;
}

.content-block-large {
    flex: 1.2;
}

.image-block {
    flex: 1;
    background-color: #e6fffa;
    border-radius: 8px;
    overflow: hidden;
}

.content-block h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.link-arrow {
    color: #2f855a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 100px 0;
    background-color: #f7fafc;
}

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

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

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

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

.service-image-wrapper {
    width: 100%;
    height: 240px;
    background-color: #e6fffa;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin: 20px 20px 12px 20px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin: 0 20px 16px 20px;
    line-height: 1.5;
}

.price {
    font-size: 28px;
    color: #2f855a;
    font-weight: 700;
    margin: 16px 20px;
}

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

.btn-select-service:hover {
    background-color: #276749;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    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: #2f855a;
}

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

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

.additional-services {
    padding: 80px 0;
    background-color: #f7fafc;
}

.additional-services h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.service-detail-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.service-detail-card h3 {
    font-size: 26px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-detail-card p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.price-large {
    font-size: 32px;
    color: #2f855a;
    font-weight: 700;
}

.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fffaf0;
    border-top: 2px solid #fbd38d;
    border-bottom: 2px solid #fbd38d;
}

.disclaimer-text {
    font-size: 15px;
    color: #744210;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.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;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie.accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

.btn-cookie:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 80px 0 60px 0;
    background-color: #f0fff4;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 800;
}

.lead {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2f855a;
}

.approach-item h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.expertise-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.expertise-list {
    list-style: none;
    margin-bottom: 24px;
}

.expertise-list li {
    font-size: 17px;
    color: #2d3748;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    padding-left: 28px;
    position: relative;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2f855a;
    font-weight: 700;
}

.values-visual {
    padding: 80px 0;
    background-color: #f7fafc;
    text-align: center;
}

.values-visual h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.values-visual p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values-visual img {
    margin: 40px auto 0 auto;
    border-radius: 8px;
    max-width: 100%;
}

.cta-section-alt {
    padding: 80px 0;
    background-color: #2f855a;
    text-align: center;
    color: #ffffff;
}

.cta-section-alt h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.cta-section-alt .cta-primary {
    background-color: #ffffff;
    color: #2f855a;
}

.cta-section-alt .cta-primary:hover {
    background-color: #f7fafc;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-full-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-full-card.reverse {
    flex-direction: row-reverse;
}

.service-full-content {
    flex: 1.2;
}

.service-full-image {
    flex: 1;
    background-color: #e6fffa;
    border-radius: 8px;
    overflow: hidden;
}

.service-full-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-full-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 24px 0;
    padding-left: 0;
}

.service-features li {
    font-size: 16px;
    color: #2d3748;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

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

.service-pricing-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.price-display {
    font-size: 36px;
    color: #2f855a;
    font-weight: 700;
}

.contact-details-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.contact-detail-item h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-note {
    font-size: 15px;
    color: #718096;
    font-style: italic;
    margin-top: 24px;
}

.contact-image-block {
    flex: 1;
    background-color: #e6fffa;
    border-radius: 8px;
    overflow: hidden;
}

.contact-approach {
    padding: 80px 0;
    background-color: #f7fafc;
}

.contact-approach h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

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

.service-areas {
    padding: 80px 0;
    background-color: #ffffff;
}

.centered-text {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

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

.area-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 8px;
}

.area-card h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

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

.thanks-visual {
    margin-top: 40px;
    background-color: #e6fffa;
    border-radius: 8px;
    overflow: hidden;
}

.next-steps {
    padding: 80px 0;
    background-color: #f7fafc;
}

.next-steps h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-item h3 {
    font-size: 22px;
    color: #2f855a;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

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

.legal-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

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

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

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

.legal-page ul {
    margin: 16px 0 16px 32px;
}

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

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

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text-content h1 {
        font-size: 32px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-full-card,
    .service-full-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .section-title-center {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}