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

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

.ad-notice {
    background-color: #fffbea;
    border-bottom: 1px solid #e8d9a8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6b5d3f;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

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

.hero-editorial {
    position: relative;
    height: 65vh;
    min-height: 450px;
    overflow: hidden;
    background-color: #2a2a2a;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    text-align: center;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.editorial-intro {
    padding: 80px 20px;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 500;
}

.narrow-content p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #3a3a3a;
}

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

.narrow-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

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

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

.insight-box {
    background-color: #f7f4ef;
    border-left: 4px solid #c9a961;
    padding: 30px;
    margin: 40px 0;
}

.insight-box h3 {
    margin-top: 0;
    font-size: 20px;
    color: #2a2a2a;
}

.insight-box p {
    margin-bottom: 0;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

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

.services-inline {
    margin: 60px 0;
}

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

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

.service-card-editorial p {
    margin-bottom: 20px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #c9a961;
    margin-bottom: 20px;
}

.cta-select-service {
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-select-service:hover {
    background-color: #1a1a1a;
}

.cta-select-service.selected {
    background-color: #c9a961;
}

.testimonial-inline {
    background-color: #fafafa;
    border-left: 4px solid #2a2a2a;
    padding: 30px;
    margin: 50px 0;
    font-size: 18px;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-inline footer {
    margin-top: 15px;
    font-style: normal;
    font-size: 15px;
    color: #6a6a6a;
}

.cta-inline-section {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
}

.cta-inline-section h3 {
    color: #ffffff;
    margin-top: 0;
    font-size: 28px;
}

.cta-inline-section p {
    color: #e0e0e0;
    font-size: 17px;
}

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

.form-notice {
    background-color: #f0f7ff;
    border: 1px solid #b3d9ff;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #1a1a1a;
}

.editorial-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2a2a2a;
    font-size: 15px;
}

.editorial-form input[type="text"],
.editorial-form input[type="email"],
.editorial-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #c0c0c0;
    font-size: 15px;
    font-family: inherit;
}

.editorial-form textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #c9a961;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-section p {
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1.6;
}

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

.contact-info-block h3 {
    margin-top: 0;
    font-size: 20px;
    color: #1a1a1a;
}

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

.narrow-content ul {
    margin-left: 25px;
    margin-bottom: 24px;
}

.narrow-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 20px;
}

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

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

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

.footer-col p,
.footer-col a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-references h5 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-references p {
    margin-bottom: 10px;
}

.footer-references a {
    color: #7db3e8;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #5a5a5a;
}

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

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

    .narrow-content {
        padding: 0 20px;
    }

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

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