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

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2d8659;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.main-header {
    background-color: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.hero-section {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    padding: 20px;
    max-width: 800px;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.showcase-item {
    flex: 1;
    min-width: 280px;
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

.showcase-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.showcase-item p {
    font-size: 16px;
    color: var(--text-light);
}

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

.trust-building h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 18px;
    color: var(--text-light);
}

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

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.testimonial {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.cta-early {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.cta-box {
    text-align: center;
    color: var(--bg-white);
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-submit {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #e89551;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    font-size: 18px;
    color: var(--text-light);
}

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

.pricing-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 2px solid var(--border-color);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.contact-form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

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

.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;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
}

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

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

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

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

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

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

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

.footer-col ul li a {
    color: #cccccc;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

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

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

.page-hero h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.value-item p {
    font-size: 18px;
    color: var(--text-light);
}

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

.stats-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
}

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

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-intro {
    padding: 40px 0 60px;
}

.services-intro p {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
}

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

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

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li::before {
    content: "→ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.service-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-guarantee {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.service-guarantee h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-color);
}

.service-guarantee p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.contact-content {
    padding: 60px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.thanks-section {
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    font-size: 18px;
    margin-bottom: 15px;
}

#service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

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

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

.legal-page ul {
    margin: 20px 0 20px 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-page a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

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