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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 250px;
}

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

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

.cookie-btn.accept {
    background: #27ae60;
    color: white;
}

.cookie-btn.accept:hover {
    background: #229954;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

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

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

.main-nav a:hover {
    color: #27ae60;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 12px;
}

.hero-funnel {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2c5f3f;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

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

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

.hero-subtext {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-intro p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.opening-line {
    font-size: 21px;
    font-weight: 500;
}

.emphasis-text {
    font-size: 24px;
    font-weight: 600;
    color: #27ae60;
    font-style: italic;
}

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.insight-reveal h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.insight-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0.95;
}

.insight-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

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

.wide-content {
    max-width: 900px;
    margin: 0 auto;
}

.inline-image {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #444;
}

.testimonials-inline {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-item {
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
}

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

.benefits-reveal h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.services-overview {
    padding: 100px 20px;
    background: #fafafa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 19px;
    color: #555;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px 12px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    padding: 12px 20px;
}

.select-service-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5f3f 0%, #27ae60 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

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

.service-selected-display {
    margin-bottom: 24px;
    padding: 16px;
    background: #e8f5e9;
    border-radius: 4px;
    font-size: 16px;
    color: #2c3e50;
}

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

.submit-btn:hover {
    background: #229954;
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #229954;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #27ae60;
}

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

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

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

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.thanks-content .service-confirmation {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
}

.thanks-content a {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #229954;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-page {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #27ae60;
}

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

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

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

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

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}