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

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

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

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.cookie-btn.accept {
    background-color: #4a90e2;
    color: white;
}

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

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

.cookie-btn.reject:hover {
    background-color: #444;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.navigation a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #4a90e2;
}

.ad-label {
    font-size: 12px;
    color: #999;
    border-left: 1px solid #e0e0e0;
    padding-left: 30px;
    font-style: italic;
}

.editorial-content {
    background-color: #ffffff;
}

.story-container {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2a2a2a;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 700;
}

.hero-text-overlay .lead {
    font-size: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-style: italic;
}

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

.intro-narrative,
.problem-amplification,
.scandal-insights,
.trust-building,
.solution-reveal,
.services-preview,
.form-section,
.final-cta,
.disclaimer-section,
.references-section {
    margin-bottom: 80px;
}

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

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #3a3a3a;
}

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

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.inline-image-left,
.inline-image-right,
.inline-image-center {
    margin: 40px 0;
    background-color: #f5f5f5;
}

.inline-image-left img,
.inline-image-right img,
.inline-image-center img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-image-left {
    float: left;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
}

.inline-image-right {
    float: right;
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
}

.citation {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #357abd;
    text-decoration: underline;
}

.testimonial-block {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #4a90e2;
}

.testimonial-block blockquote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 15px;
}

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

.service-card-editorial {
    background-color: #fafafa;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #4a90e2;
}

.service-card-editorial h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 16px;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin: 20px 0;
}

.cta-inline {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-inline:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.selected-service-display {
    background-color: #e8f4ff;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
    color: #1a1a1a;
}

.editorial-form {
    margin-top: 40px;
}

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

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

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

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

.submit-btn {
    background-color: #2a2a2a;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

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

.closing-statement {
    font-size: 20px;
    font-style: italic;
    text-align: center;
    color: #2a2a2a;
    padding: 40px 0;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #4a90e2;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 15px;
    }

    .ad-label {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 15px;
    }

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

    .hero-text-overlay .lead {
        font-size: 16px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .opening-paragraph {
        font-size: 18px;
    }

    .content-narrow p {
        font-size: 16px;
    }

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