* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    border: 1px solid #e1e8ed;
    padding: 4px 10px;
    border-radius: 3px;
}

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

.hero-story {
    margin-bottom: 60px;
}

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

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

.hero-text-narrow {
    max-width: 700px;
    margin: 50px auto;
    padding: 0 30px;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text-narrow p {
    font-size: 19px;
    color: #555;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

.content-narrow h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.inline-image-wrapper {
    width: 100%;
    margin: 40px 0;
    background-color: #ecf0f1;
}

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

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

.link-cta {
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}

.link-cta:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.quote-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.quote-block blockquote {
    font-size: 20px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.services-grid-editorial {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-story {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e1e8ed;
    transition: box-shadow 0.3s;
}

.service-card-story:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-story h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section-editorial {
    padding: 80px 30px;
}

.contact-form-editorial {
    max-width: 600px;
    margin: 40px auto 0;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background-color: #ffffff;
}

.form-group input[readonly] {
    background-color: #e8f4f8;
    color: #2c3e50;
    cursor: not-allowed;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #229954;
}

.btn-secondary {
    background-color: #7f8c8d;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #5d6d7e;
}

.btn-submit {
    margin-top: 10px;
}

.final-thoughts {
    margin-bottom: 60px;
}

.disclaimer-section {
    margin-top: 50px;
    padding: 25px;
    background-color: #fef9e7;
    border: 1px solid #f39c12;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 30px 30px;
}

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

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

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

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