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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-notice {
    background: #fff3cd;
    padding: 0.6rem;
    text-align: center;
    font-size: 0.85rem;
    color: #856404;
    border-bottom: 1px solid #ffeeba;
}

.header-editorial {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-editorial {
    margin-bottom: 2rem;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 2rem;
    background-color: #e8e8e8;
}

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

.hero-text-narrow h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.text-section-narrow h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.text-section-narrow p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    color: #444;
}

.inline-image-block {
    margin: 2.5rem 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.editorial-list {
    margin: 1.5rem 0 1.5rem 2rem;
    font-size: 1.05rem;
}

.editorial-list li {
    margin-bottom: 0.8rem;
    color: #444;
}

.cta-inline {
    text-align: center;
    margin: 2rem 0;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s;
}

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

.insight-box {
    background: #ecf0f1;
    padding: 2.5rem;
    border-left: 4px solid #3498db;
    margin: 3rem 0;
}

.insight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 4px;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
}

.service-price {
    font-weight: 600;
    color: #27ae60;
    font-size: 1.15rem !important;
    margin: 1rem 0 !important;
}

.btn-service {
    padding: 0.8rem 1.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
    width: 100%;
}

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

.testimonial-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.testimonial-narrow blockquote {
    border-left: 4px solid #95a5a6;
    padding-left: 2rem;
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
}

.testimonial-narrow cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #777;
}

.form-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    margin: 3rem -2rem 0;
}

.form-container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-narrow h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.form-field input,
.form-field select {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.disclaimer-section {
    background: #fff3cd;
    padding: 1.5rem;
    margin: 3rem -2rem 0;
    border-left: 4px solid #ffc107;
}

.disclaimer-content {
    max-width: 750px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.6;
}

.footer-editorial {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-contact {
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.thanks-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }

    .hero-text-narrow h1 {
        font-size: 1.8rem;
    }

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

    .form-section {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .disclaimer-section {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}