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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    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-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-cookie-accept {
    background: #4a90e2;
    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);
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.main-nav a:hover {
    color: #4a90e2;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
    font-weight: 300;
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.visual-break {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-amplification {
    background: #fafafa;
}

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

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.text-column {
    flex: 1;
}

.image-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.text-column h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

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

.insight-section {
    background: #2c2c2c;
    color: #fff;
}

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

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e5e5e5;
}

.trust-building {
    background: #fff;
}

.testimonials-inline {
    background: #f9f9f9;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

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

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

.benefit-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.benefit-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-pricing {
    background: #fafafa;
}

.services-pricing h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.services-pricing > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #4a90e2;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card.featured {
    border-color: #4a90e2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #357abd;
    transform: translateY(-2px);
}

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

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

#selectedServiceDisplay {
    font-size: 18px;
    color: #4a90e2;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.final-cta p {
    font-size: 19px;
    color: #e5f2ff;
    line-height: 1.7;
}

.main-footer {
    background: #2c2c2c;
    color: #e5e5e5;
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
    color: #4a90e2;
}

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

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

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

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

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

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

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

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

    .header-content {
        padding: 15px 20px;
    }

    .content-narrow,
    .content-wide {
        padding: 50px 20px;
    }
}