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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-editorial {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

.hero-image-inline {
    max-width: 1200px;
    margin: 0 auto;
    background: #e9ecef;
}

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

.story-intro {
    padding: 4rem 2rem;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-column p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.narrow-column h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-column h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.narrow-column img {
    width: 100%;
    height: auto;
    display: block;
    background: #e9ecef;
}

.insight-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    margin: 2rem 0;
}

.insight-box h3 {
    margin-top: 0;
    color: #2c3e50;
}

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

.inline-cta {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin: 2rem 0;
    transition: background 0.3s;
}

.inline-cta:hover {
    background: #2980b9;
}

.testimonial-inline {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial-inline p {
    margin-bottom: 0.5rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #856404;
}

.service-reveal {
    margin: 3rem 0;
}

.service-card-editorial {
    background: #ffffff;
    border: 1px solid #dee2e6;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.service-card-editorial h3 {
    margin-top: 0;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.select-service-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.select-service-btn.selected {
    background: #27ae60;
}

.editorial-form {
    background: #f8f9fa;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.editorial-form h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.selected-service-text {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    border: 2px dashed #dee2e6;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #6c757d;
}

.selected-service-text.active {
    border-color: #27ae60;
    color: #27ae60;
}

.editorial-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.editorial-form input,
.editorial-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #229954;
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background: #e9ecef;
    border-radius: 4px;
}

.disclaimer-section small {
    color: #6c757d;
    line-height: 1.6;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: white;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

.thanks-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.contact-container h1 {
    margin-bottom: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.services-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    padding: 2rem;
    border-radius: 4px;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
}

.about-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
}

.legal-container h1 {
    margin-bottom: 2rem;
}

.legal-container h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-editorial h1 {
        font-size: 1.75rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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