* {
    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: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #3498db;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #34495e;
}

.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(135deg, rgba(52, 73, 94, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.story-intro {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.story-lead {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.narrow-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}

.problem-summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e74c3c;
    line-height: 1.7;
}

.insight-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.insight-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.truth {
    font-weight: 600;
    color: #2ecc71;
}

.trust-section {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.trust-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.timeline-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: #3498db;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

blockquote {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #ffffff;
    font-style: italic;
    position: relative;
    padding: 2rem 3rem;
}

blockquote:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -1rem;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.benefits-asymmetric {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.benefit-major {
    flex: 1.2;
    min-width: 400px;
    background-color: #ecf0f1;
}

.benefit-major img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.benefit-major h3 {
    font-size: 2rem;
    padding: 2rem;
    padding-bottom: 1rem;
    color: #2c3e50;
}

.benefit-major p {
    padding: 0 2rem 2rem 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefit-grid {
    flex: 1;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-small {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #27ae60;
}

.benefit-small h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.benefit-small p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.process-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.process-visual {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.process-step {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.step-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.step-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #34495e;
}

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.services-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #ecf0f1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border-color: #3498db;
    background: #ebf5fb;
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-desc {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 1.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-select {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.final-cta {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.final-cta p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-cta-btn {
    display: block;
    max-width: 400px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #e74c3c;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

.footer-section a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #7f8c8d;
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .process-step,
    .process-step.reverse {
        flex-direction: column;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

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