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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-notice {
    background: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-flow {
    background: #fff;
}

.hero-editorial {
    margin: 0 0 50px 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #3a3a3a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 50px 40px;
}

.hero-overlay h1 {
    font-size: 38px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
}

.narrow-content {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    margin: 60px 0;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text p {
    margin-bottom: 25px;
    font-size: 17px;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 3px;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

.visual-break {
    margin: 70px 0;
    background-color: #e5e5e5;
}

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

.problem-amplification {
    margin: 70px 0;
}

.problem-amplification h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.problem-amplification p {
    margin-bottom: 25px;
    font-size: 17px;
}

.insight-box {
    background: #f8f8f8;
    border-left: 4px solid #2563eb;
    padding: 25px 30px;
    margin: 40px 0;
}

.insight-box p {
    margin: 0;
    font-size: 16px;
}

.services-preview {
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

.service-card-editorial {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card-editorial.reverse {
    flex-direction: column-reverse;
}

.service-image {
    width: 100%;
    background-color: #e0e0e0;
}

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

.service-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.price {
    font-weight: 600;
    font-size: 18px;
    color: #2563eb;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background 0.2s;
}

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

.trust-building {
    margin: 80px 0;
}

.trust-building h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 400;
    text-align: center;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background: #f8f8f8;
    border-left: 3px solid #999;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.form-section {
    margin: 80px 0;
    padding: 50px 0;
    background: #f5f5f5;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.form-section > .narrow-content > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.editorial-form {
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-family: 'Arial', sans-serif;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #1e40af;
}

.final-cta {
    margin: 80px 0 60px 0;
    padding: 60px 20px;
    background: #1a1a1a;
    color: #fff;
}

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

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.center-text {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #1e40af;
}

.main-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 50px 20px 20px 20px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background: #3a3a3a;
    font-size: 13px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.2s;
}

.btn-accept {
    background: #2563eb;
    color: #fff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #666;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}