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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 1.4em;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95em;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75em;
    color: #888;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

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

.story-content {
    padding: 0;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
    background-color: #1a1a1a;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-text-overlay h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3em;
    line-height: 1.5;
    opacity: 0.95;
}

.narrative-intro,
.insight-block,
.problem-amplification,
.services-preview,
.form-section,
.trust-section,
.references-section,
.about-narrative,
.services-detailed,
.contact-info,
.legal-content,
.thanks-content,
.page-hero {
    padding: 60px 0;
}

.page-hero {
    padding: 80px 0 40px;
}

.intro-paragraph {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #3a3a3a;
}

h2 {
    font-size: 2em;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4em;
    margin: 35px 0 15px;
    font-weight: 600;
    color: #2c2c2c;
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 2px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.styled-list {
    margin: 25px 0 25px 30px;
    font-size: 1.1em;
}

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

.citation-link {
    color: #d35400;
    text-decoration: none;
    font-size: 0.9em;
}

.citation-link:hover {
    text-decoration: underline;
}

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

.btn-inline {
    display: inline-block;
    padding: 14px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05em;
    border-radius: 3px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-inline:hover {
    background-color: #1a252f;
    cursor: pointer;
}

.testimonial-inline {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin: 60px 0;
}

.testimonial-quote {
    border-left: 4px solid #d35400;
    padding-left: 30px;
    font-style: italic;
}

.testimonial-quote p {
    font-size: 1.25em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-quote cite {
    font-style: normal;
    font-size: 0.95em;
    color: #666;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.5em;
}

.price-tag {
    font-size: 1.6em;
    font-weight: 600;
    color: #d35400;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    padding: 12px 30px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.editorial-form {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.btn-submit {
    padding: 14px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    padding: 25px;
    background-color: #f5f5f5;
    border-left: 3px solid #999;
    margin: 30px 0;
}

.reference-list {
    margin-left: 20px;
    font-size: 0.95em;
}

.reference-list li {
    margin-bottom: 15px;
}

.reference-list a {
    color: #2980b9;
    text-decoration: none;
}

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

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95em;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    margin: 0;
    font-size: 0.95em;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-size: 0.95em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.contact-block {
    margin-bottom: 40px;
}

.service-detail-block {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-of-type {
    border-bottom: none;
}

.service-price {
    font-size: 1.8em;
    font-weight: 600;
    color: #d35400;
    margin: 25px 0;
    font-family: 'Arial', sans-serif;
}

.thanks-content h1 {
    color: #27ae60;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .nav-links {
        gap: 15px;
    }

    h2 {
        font-size: 1.6em;
    }

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

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