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

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

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5276;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-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: bold;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #34495e;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    padding: 8px 12px;
}

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

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

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

/* Hero Editorial */
.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

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

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

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: normal;
}

.intro-lead {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

/* Story Sections */
.story-section {
    padding: 60px 0;
}

.opening-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

.story-section h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    font-weight: normal;
    color: #2c3e50;
}

.story-section h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    font-weight: normal;
    color: #34495e;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.story-section ul {
    margin: 20px 0 20px 40px;
    font-size: 18px;
}

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

/* Inline Images */
.inline-image-section {
    padding: 60px 0;
}

.inline-image {
    width: 100%;
    margin: 40px auto;
    border-radius: 4px;
}

/* Services Preview */
.services-preview {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-intro {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.services-list-editorial {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-editorial {
    background: #fff;
    padding: 35px;
    border-left: 4px solid #2980b9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: normal;
}

.service-card-editorial p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.price-tag {
    font-size: 26px;
    color: #27ae60;
    margin: 20px 0;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.cta-inline {
    background-color: #2980b9;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #1a5276;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #ecf0f1;
    padding: 80px 0;
}

.testimonial {
    border-left: 5px solid #2980b9;
    padding-left: 30px;
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

/* CTA Section */
.cta-section-editorial {
    padding: 80px 0;
    background-color: #34495e;
    color: #ecf0f1;
}

.cta-section-editorial h2 {
    color: #fff;
}

.cta-section-editorial p {
    color: #ecf0f1;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

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

.submit-button {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1e8449;
}

/* Disclaimer */
.disclaimer {
    margin-top: 60px;
    padding: 25px;
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
    font-size: 14px;
    line-height: 1.6;
    color: #7d6608;
}

/* Page Header */
.page-header {
    padding: 80px 0 40px;
    background-color: #ecf0f1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: normal;
}

.page-header .intro-lead {
    font-size: 20px;
    color: #555;
    font-style: italic;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: normal;
}

.service-price {
    font-size: 28px;
    color: #27ae60;
    margin-bottom: 25px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.service-features {
    margin: 25px 0 25px 40px;
    list-style: disc;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 17px;
}

.cta-button {
    display: inline-block;
    background-color: #2980b9;
    color: #fff;
    padding: 14px 32px;
    font-size: 17px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a5276;
    color: #fff;
}

/* Contact Info */
.contact-info-section {
    padding: 60px 0;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 35px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.no-link {
    color: #34495e;
    cursor: default;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 25px;
    border-left: 4px solid #2980b9;
    margin-bottom: 35px;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
    margin-bottom: 60px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
    font-weight: normal;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-confirmation {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background-color: #95a5a6;
    color: #fff;
    padding: 14px 32px;
    font-size: 17px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: #7f8c8d;
    color: #fff;
}

/* Legal Pages */
.legal-page {
    background-color: #fff;
}

.legal-notice {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: normal;
}

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

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

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

.footer-section a {
    color: #bdc3c7;
    font-size: 15px;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #1e8449;
}

.cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

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

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

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

    .intro-lead {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

    .story-section h2 {
        font-size: 28px;
    }

    .service-card-editorial {
        padding: 25px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay h1 {
        font-size: 26px;
    }

    .hero-image {
        height: 350px;
    }

    .story-section {
        padding: 40px 0;
    }

    .services-preview {
        padding: 50px 0;
    }
}
