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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-cookie.accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

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

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav-main a:hover {
    color: #4a7c59;
}

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

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

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

.hero-right {
    flex: 1;
    background-color: #ddd;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6649;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c2c2c;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.insight-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c2c2c;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

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

.split-image {
    flex: 1;
    background-color: #ddd;
}

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

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.testimonial-inline {
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-inline blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-inline cite {
    display: block;
    margin-top: 24px;
    font-style: normal;
    font-size: 16px;
    color: #aaa;
}

.trust-builders {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f9f7f4;
    border-left: 4px solid #4a7c59;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.problem-amplification {
    padding: 100px 20px;
    background-color: #f9f7f4;
}

.problem-amplification h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c2c2c;
}

.problem-amplification p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.problem-list {
    margin: 32px 0;
    padding-left: 24px;
}

.problem-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.services-reveal {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background-color: #f9f7f4;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #e5e5e5;
}

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #2c2c2c;
}

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    padding: 0 24px 16px;
    color: #4a7c59;
}

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

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

.service-card.selected {
    border: 3px solid #4a7c59;
}

.form-section {
    padding: 100px 20px;
    background-color: #f9f7f4;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c2c2c;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #ccc;
}

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

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

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

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

.footer-col p,
.footer-col ul {
    font-size: 14px;
    color: #aaa;
}

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

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

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #4a7c59;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.page-header {
    padding: 80px 20px 40px;
    background-color: #f9f7f4;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 40px;
    color: #2c2c2c;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #2c2c2c;
}

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

.content-section ul,
.content-section ol {
    margin: 16px 0 16px 24px;
}

.content-section li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

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

    .split-feature,
    .split-feature.reverse {
        flex-direction: column;
    }

    .split-image {
        min-height: 300px;
    }

    .nav-main {
        gap: 16px;
        font-size: 14px;
    }

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

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

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

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