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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.article-body {
    background-color: #ffffff;
    padding: 80px 30px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

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

.cta-text-link {
    font-size: 20px;
    color: #d35400;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #d35400;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.cta-text-link:hover {
    color: #a04000;
    border-bottom-color: #a04000;
}

.principle-card {
    background-color: #f9f9f9;
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    margin: 30px 0;
}

.principle-card h3 {
    margin-top: 0;
    color: #2c3e50;
}

.testimonial-block {
    background-color: #ecf0f1;
    padding: 40px 50px;
    margin: 50px 0;
    border-radius: 3px;
}

.testimonial-block blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-block cite {
    display: block;
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

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

.service-item-editorial {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

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

.service-item-editorial h3 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 26px;
}

.service-item-editorial p {
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price-editorial {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.cta-section-editorial {
    margin: 70px 0 40px;
    text-align: center;
}

.cta-section-editorial h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section-editorial p {
    font-size: 19px;
    color: #555;
}

.form-editorial {
    background-color: #f8f8f8;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid #ddd;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.disclaimer-section {
    background-color: #fff9e6;
    padding: 30px;
    margin: 60px 0;
    border: 1px solid #f1c40f;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: #856404;
    font-size: 20px;
}

.disclaimer-section p {
    font-size: 15px;
    color: #6c5a00;
    line-height: 1.7;
}

.references-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f0f0f0;
}

.references-section h3 {
    margin-top: 0;
    font-size: 22px;
    color: #2c2c2c;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.footer-copy {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.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: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.9;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 30px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    color: #ecf0f1;
}

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

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info-block {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
}

.contact-info-block h3 {
    margin-top: 0;
}

.contact-info-block p {
    margin: 10px 0;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 30px;
}

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

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

.thanks-cta {
    margin-top: 40px;
}

.btn-back-home {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

    .lead-text {
        font-size: 20px;
    }

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

    .testimonial-block {
        padding: 30px 25px;
    }

    .testimonial-block blockquote {
        font-size: 18px;
    }

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

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

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