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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

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

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

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

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.hero-content-overlay {
    padding: 50px 0;
}

.hero-content-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 600;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
}

.page-header-editorial {
    margin-bottom: 50px;
}

.page-header-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.intro-large {
    font-size: 22px;
    line-height: 1.5;
    color: #4a5568;
}

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

.story-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 50px;
    color: #1a202c;
}

.story-wrapper h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 18px;
    margin-top: 35px;
    color: #2d3748;
}

.story-wrapper h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2d3748;
}

.story-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.inline-image-block {
    margin: 50px 0;
}

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e9ecef;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: #718096;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.services-preview {
    background-color: #f7fafc;
    padding: 60px 0;
    margin: 60px -30px;
}

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

.service-card-edit {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e2e8f0;
}

.service-card-edit h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.service-card-edit p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 600;
    color: #2c5282;
    margin-bottom: 20px;
}

.btn-service-select {
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.contact-form-section {
    background-color: #edf2f7;
    padding: 60px 0;
    margin: 60px -30px;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.services-detailed {
    margin-top: 50px;
}

.service-detail-block {
    margin-bottom: 70px;
}

.price-display {
    font-size: 26px;
    font-weight: 600;
    color: #2c5282;
    margin: 25px 0;
}

.contact-info-block {
    margin-bottom: 35px;
}

.note-small {
    font-size: 15px;
    color: #718096;
    font-style: italic;
    margin-top: 10px;
}

.thanks-section {
    padding: 80px 0;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-details {
    margin: 40px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    text-decoration: none;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2d3748;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #edf2f7;
    color: #2d3748;
}

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

.next-steps {
    margin-top: 60px;
}

.steps-list {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 25px;
}

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

.legal-content .story-wrapper ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-content .story-wrapper li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-content .story-wrapper a {
    color: #2c5282;
    text-decoration: none;
}

.legal-content .story-wrapper a:hover {
    text-decoration: underline;
}

.update-date {
    margin-top: 50px;
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

.rodo-section {
    background-color: #f7fafc;
    padding: 25px;
    margin-bottom: 25px;
}

.cookie-type {
    background-color: #f7fafc;
    padding: 25px;
    margin-bottom: 25px;
}

.footer-main {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 30px 30px 30px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
    line-height: 1.6;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px;
    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 {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #38a169;
}

.btn-cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #2d3748;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-content-overlay h1 {
        font-size: 36px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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