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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    margin-left: auto;
}

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

.hero-editorial {
    position: relative;
    width: 100%;
    height: 85vh;
    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.88;
}

.hero-text-overlay {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.content-narrow p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.content-narrow h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.inline-image-block {
    margin: 3rem 0;
    background-color: #f8f8f8;
}

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

.image-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 1rem;
    background-color: #f8f8f8;
}

.editorial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2a2a2a;
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    margin: 2.5rem 0;
    line-height: 1.6;
}

.problem-amplification {
    background-color: #f5f5f5;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.problem-amplification h3 {
    margin-top: 0;
}

.insight-section {
    margin: 4rem 0;
}

.trust-building {
    margin: 4rem 0;
}

.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
}

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.inline-testimonial {
    background-color: #fafafa;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 3px solid #4a4a4a;
    font-style: italic;
}

.inline-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.services-reveal {
    margin: 4rem 0;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

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

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

.price-tag {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2a2a2a;
    margin-top: 1rem;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

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

.cta-inline {
    background-color: #f9f9f9;
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 4px;
}

.editorial-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

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

.final-note {
    margin: 4rem 0;
    font-size: 1.1rem;
    color: #3a3a3a;
}

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaa;
}

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

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.page-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    text-shadow: none;
}

.service-detailed {
    margin-bottom: 4rem;
}

.price-display {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #333333;
}

.contact-info-section {
    background-color: #f9f9f9;
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
}

.contact-additional {
    margin-top: 3rem;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-info {
    background-color: #f9f9f9;
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    text-align: left;
}

.thanks-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
}

.legal-content ul {
    margin-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: normal;
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        margin-left: 0;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content-narrow {
        padding: 2rem 1.5rem;
    }

    .editorial-quote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .problem-amplification,
    .cta-inline {
        padding: 1.5rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}
