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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

.btn-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

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

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

.header-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-mark a {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-minimal ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-minimal a {
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.editorial-main {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 30px;
}

.story-article {
    background-color: #ffffff;
}

.article-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 50px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 300;
    font-family: 'Arial', sans-serif;
    opacity: 0.95;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
}

.content-section {
    margin-bottom: 50px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 10px;
    line-height: 1.3;
    color: #2c3e50;
}

.content-section p {
    margin-bottom: 22px;
}

.with-visual {
    margin-bottom: 60px;
}

.inline-image-block {
    margin: 35px 0;
    background-color: #ecf0f1;
}

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

.inline-image-block.left-aligned {
    margin-right: 0;
}

.inline-cta {
    margin: 35px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.cta-text-link {
    color: #2980b9;
    font-size: 19px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-text-link:hover {
    color: #3498db;
    text-decoration: underline;
}

.inline-cta.centered {
    text-align: center;
    border-left: none;
    border-top: 2px solid #3498db;
    border-bottom: 2px solid #3498db;
}

.cta-button-inline {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button-inline:hover {
    background-color: #34495e;
}

.editorial-quote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #ecf0f1;
    border-left: 5px solid #95a5a6;
    font-style: italic;
    font-size: 21px;
    line-height: 1.6;
    color: #34495e;
}

.highlight-section {
    background-color: #fef9e7;
    padding: 40px;
    margin: 50px -40px;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

.testimonial-inline {
    margin: 50px 0;
}

.testimonial-block {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 35px;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #2c3e50;
}

.testimonial-attribution {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

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

.form-section {
    margin: 70px 0 50px 0;
    padding: 50px 0;
    border-top: 2px solid #bdc3c7;
}

.form-container-editorial {
    background-color: #f8f9fa;
    padding: 45px;
}

.form-container-editorial h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 35px;
    color: #34495e;
}

.editorial-form {
    max-width: 100%;
}

.service-selection {
    margin-bottom: 35px;
}

.service-label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    display: block;
    padding: 18px 22px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #3498db;
    background-color: #f0f8ff;
}

.service-option input[type="radio"] {
    margin-right: 12px;
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.option-title {
    font-size: 16px;
    color: #2c3e50;
}

.option-price {
    font-size: 17px;
    font-weight: 700;
    color: #27ae60;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #34495e;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #ecf0f1;
    border-left: 4px solid #95a5a6;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5d6d7e;
    font-family: 'Arial', sans-serif;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-info p {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: #95a5a6;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 5px solid #27ae60;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-container .selected-service {
    font-weight: 600;
    color: #27ae60;
}

.thanks-container a {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #34495e;
}

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

.page-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #34495e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 30px;
    background-color: #ecf0f1;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #34495e;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    font-family: 'Arial', sans-serif;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    background-color: #bdc3c7;
}

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

.contact-info {
    margin: 40px 0;
    padding: 35px;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    margin: 0;
    color: #34495e;
}

@media screen and (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .nav-minimal ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .editorial-main {
        padding: 40px 20px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

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

    .lead-paragraph {
        font-size: 19px;
    }

    .article-content {
        font-size: 17px;
    }

    .highlight-section {
        margin: 50px -20px;
        padding: 30px 20px;
    }

    .form-container-editorial {
        padding: 30px 20px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }
}