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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #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;
    margin: 0;
}

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

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

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

.btn-accept {
    background-color: #4a9eff;
    color: #fff;
}

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

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #4a9eff;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.hero-image-container 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(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    padding: 40px;
    color: #fff;
    text-align: center;
}

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

.hero-text p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-narrative {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.narrative-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

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

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4a9eff;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #ddd;
}

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

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.testimonials-inline {
    padding: 100px 40px;
    background-color: #fff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 400px;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #4a9eff;
}

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

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

.service-reveal {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

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

.service-intro p {
    font-size: 18px;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 360px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
    margin: 0 24px 20px;
}

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

.btn-service:hover {
    background-color: #1a252f;
}

.cta-primary {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #fff;
    text-align: center;
}

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

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

.btn-cta-large {
    padding: 18px 48px;
    background-color: #4a9eff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #3a8eef;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.main-footer {
    background-color: #1a252f;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a9eff;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #4a9eff;
}

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

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

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

    .hero-text p {
        font-size: 18px;
    }

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

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

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

    .testimonial-container {
        flex-direction: column;
    }

    .testimonial {
        min-width: auto;
    }
}