/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #666666;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

/* Editorial Header */
.editorial-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #2a2a2a;
}

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

.nav-links a {
    color: #2a2a2a;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Editorial Content Layout */
.editorial-content {
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

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

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    max-width: 900px;
    font-weight: normal;
}

/* Narrow Content Container */
.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Story Sections */
.story-intro,
.services-reveal,
.form-section,
.closing-story,
.disclaimer-section,
.references-section {
    padding: 40px 0;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-style: italic;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 24px 0;
    color: #1a1a1a;
    font-weight: normal;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
    color: #2a2a2a;
    font-weight: normal;
}

p {
    margin-bottom: 20px;
}

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

.story-quote {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    color: #1a5490;
    margin: 50px 0;
    padding: 30px;
    border-left: 4px solid #1a5490;
    background-color: #f9f9f9;
}

.story-list {
    margin: 30px 0;
    padding-left: 30px;
}

.story-list li {
    margin-bottom: 16px;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #f0f7ff;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    text-align: right;
}

/* CTA Buttons */
.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Service Cards */
.service-card {
    margin: 40px 0;
    padding: 40px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.service-card h3 {
    margin-top: 0;
    color: #1a5490;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 20px 0;
}

.btn-select {
    padding: 14px 32px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

/* Form Section */
.editorial-form {
    margin: 40px 0;
}

.service-display {
    padding: 20px;
    background-color: #f0f7ff;
    border: 2px solid #1a5490;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #1a5490;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    padding: 16px 48px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* References Section */
.references-section {
    background-color: #f5f5f5;
}

.references-list {
    list-style: none;
    padding: 0;
}

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

.references-list a {
    color: #1a5490;
    text-decoration: underline;
}

/* Page Header */
.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px 40px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: normal;
}

/* Contact Info */
.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin: 30px 0;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
}

.contact-item h3 {
    margin-top: 0;
    color: #1a5490;
}

.contact-item .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Thanks Section */
.thanks-section {
    min-height: 60vh;
}

.thanks-content {
    margin-top: 40px;
}

/* Legal Content */
.legal-content {
    padding: 40px 0;
}

.updated-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 12px;
}

/* Footer */
.editorial-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 50px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cccccc;
}

.footer-email {
    margin-bottom: 16px;
    font-size: 14px;
    color: #cccccc;
}

.footer-copy {
    font-size: 14px;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .editorial-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .narrow-content {
        padding: 40px 20px;
    }

    h2 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 20px;
    }

    .story-quote {
        font-size: 22px;
        padding: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}