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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: #ffffff;
}

.header-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: var(--light-bg);
    text-align: center;
    padding: 8px 20px;
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure span {
    font-size: 12px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

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

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.story-header {
    margin-bottom: 50px;
    text-align: center;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-lead {
    font-size: 20px;
    color: #555;
    line-height: 1.5;
    font-style: italic;
}

.story-image {
    margin: 50px 0;
    background-color: var(--light-bg);
}

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

.story-section {
    margin: 50px 0;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.story-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    display: block;
    object-fit: cover;
    background-color: var(--light-bg);
}

.citation {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

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

.inline-cta {
    background-color: var(--light-bg);
    padding: 35px;
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.inline-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.services-editorial {
    margin: 50px 0;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 35px;
    margin-bottom: 30px;
}

.service-card-editorial.expanded {
    padding: 40px;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
    object-fit: cover;
    background-color: var(--light-bg);
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card-editorial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.service-features li {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.select-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial {
    border-left: 3px solid var(--accent-color);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial footer {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

.form-section {
    background-color: var(--light-bg);
    padding: 45px;
    margin: 50px 0;
    border: 1px solid var(--border-color);
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.selected-service-display {
    font-size: 17px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #e8f5e9;
    font-family: 'Arial', sans-serif;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--success-color);
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 25px;
    margin: 50px 0;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--light-bg);
}

.references-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.references-list a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
    padding: 40px;
    background-color: var(--light-bg);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.thanks-container {
    text-align: center;
    padding: 60px 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--success-color);
}

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

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    margin: 25px 0;
    font-size: 18px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.legal-content {
    font-family: 'Arial', sans-serif;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 19px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--secondary-color);
}

.legal-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 15px;
    color: var(--secondary-color);
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-update {
    font-size: 14px;
    color: #666;
    margin-top: 40px;
    font-style: italic;
}

.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 50px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--success-color);
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

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

    .story-header h1 {
        font-size: 32px;
    }

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

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

    .story-section p {
        font-size: 17px;
    }

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

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

    .contact-info-block {
        padding: 25px;
    }
}