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

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

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

.btn-cookie-accept:hover {
    background-color: #3d7a4d;
}

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

.btn-cookie-reject:hover {
    background-color: #333;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.nav-main a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
}

.intro-story {
    padding: 80px 0;
    background-color: #fafafa;
}

.lead-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.intro-story p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

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

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

.split-content {
    flex: 1 1 400px;
}

.split-image {
    flex: 1 1 400px;
    background-color: #f0f0f0;
}

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

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.insight-list {
    list-style: none;
    margin-top: 28px;
}

.insight-list li {
    padding: 12px 0;
    font-size: 18px;
    color: #2d5a3d;
    font-weight: 500;
    border-left: 4px solid #2d5a3d;
    padding-left: 20px;
    margin-bottom: 12px;
}

.insight-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-intro {
    font-size: 20px;
    color: #555;
    margin-bottom: 48px;
    text-align: center;
}

.insight-card {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.insight-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.reference-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 16px;
}

.reference-note a {
    color: #2d5a3d;
    text-decoration: none;
}

.reference-note a:hover {
    text-decoration: underline;
}

.proof-section {
    padding: 100px 0;
    background-color: #2d5a3d;
    color: #ffffff;
}

.proof-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #8bc34a;
}

.benefits-reveal {
    padding: 100px 0;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    min-width: 80px;
}

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cards {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

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

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px 24px;
    color: #555;
    line-height: 1.6;
}

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

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px 24px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

.cta-form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 48px;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.footer-main {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 20px 0;
}

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-references {
    margin-bottom: 40px;
}

.footer-references h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-references ol {
    padding-left: 20px;
    font-size: 14px;
}

.footer-references ol li {
    margin-bottom: 8px;
}

.footer-references a {
    color: #8bc34a;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

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

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

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

.page-hero h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-content {
    padding: 80px 0;
}

.content-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.content-main {
    flex: 2 1 500px;
}

.content-sidebar {
    flex: 1 1 280px;
}

.content-main h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.content-main img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.about-list {
    list-style: none;
    margin: 24px 0;
}

.about-list li {
    padding: 12px 0;
    font-size: 18px;
    color: #2a2a2a;
    border-left: 4px solid #2d5a3d;
    padding-left: 20px;
    margin-bottom: 12px;
}

.sidebar-card {
    background-color: #fafafa;
    padding: 32px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.stat-item {
    margin-bottom: 24px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

.services-detailed {
    padding: 80px 0;
}

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

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

.service-image-wrapper {
    flex: 1 1 400px;
    background-color: #e0e0e0;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1 1 400px;
}

.service-details h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details h3 {
    font-size: 22px;
    margin: 28px 0 12px 0;
    color: #2a2a2a;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-details ul {
    list-style: none;
    margin: 16px 0;
}

.service-details ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #3a3a3a;
    padding-left: 24px;
    position: relative;
}

.service-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

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

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1 1 400px;
}

.contact-image {
    flex: 1 1 400px;
    background-color: #e0e0e0;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #3a3a3a;
}

.contact-item .note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

.contact-note-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.contact-note-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-note-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #fafafa;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.service-info-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 32px auto;
    max-width: 600px;
}

.service-info-box.hidden {
    display: none;
}

.service-info-box p {
    font-size: 18px;
    color: #2a2a2a;
    margin: 0;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 16px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3d7a4d;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.legal-content {
    padding: 80px 0;
}

.legal-date {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px 0;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 12px 0;
    color: #2a2a2a;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 32px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.cookie-table td {
    font-size: 15px;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .lead-text {
        font-size: 22px;
    }

    .split-layout,
    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .nav-main {
        flex-direction: column;
        gap: 12px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .services-cards {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .content-layout {
        flex-direction: column;
    }

    .sidebar-card {
        position: static;
    }
}
