* {
    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: #333;
    background: #fff;
}

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-actions {
    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: #4a9eff;
    color: #fff;
}

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

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

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

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ad-disclosure {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-nav a:hover {
    opacity: 0.8;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-story {
    padding: 120px 40px;
    background: #f8f9fa;
}

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

.content-narrow h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

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

.problem-amplification {
    padding: 100px 40px;
    background: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.insight-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #fff;
}

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

.content-centered h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #2a2a2a;
}

.insight-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.insight-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 20px 15px;
}

.insight-card p {
    font-size: 16px;
    color: #ccc;
    margin: 0 20px 25px;
    line-height: 1.6;
}

.trust-building {
    padding: 100px 40px;
    background: #f0f4f8;
}

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

.content-wide h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonials-flow {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.services-reveal {
    padding: 120px 40px;
    background: #fff;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: 340px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #dfe6e9;
}

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

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin: 20px 20px 15px;
}

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

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

.form-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

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

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

.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #764ba2;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p:last-child {
    font-size: 13px;
    color: #666;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background: #333;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #2d3436;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #636e72;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: #555;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px;
}

.contact-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3436;
}

.contact-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

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

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

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

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

    .header-container {
        flex-direction: column;
        text-align: center;
    }

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