/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    padding-top: 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Ad Disclosure */
.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.8rem;
    border-bottom: 1px solid #dee2e6;
    z-index: 1000;
}

/* Navigation - Minimal Editorial Style */
.nav-minimal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: #2c3e50;
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover {
    border-bottom-color: #3498db;
}

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 720px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Editorial Hero */
.editorial-hero {
    margin: 0 0 60px 0;
    position: relative;
}

.editorial-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #e9ecef;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    margin: -80px 20px 0 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.editorial-hero-simple {
    margin: 0 0 50px 0;
    padding: 40px 0;
    text-align: center;
}

.editorial-hero-simple h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.editorial-hero-simple p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

/* Editorial Intro */
.editorial-intro {
    margin: 60px 0;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Editorial Content */
.editorial-content {
    margin: 50px 0;
}

.editorial-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 50px 0 25px 0;
    font-weight: 700;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.editorial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 25px;
}

.editorial-content ul {
    margin: 25px 0 25px 30px;
}

.editorial-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.editorial-list {
    list-style-type: none;
    margin-left: 0;
}

.editorial-list li {
    padding-left: 30px;
    position: relative;
}

.editorial-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Editorial Quote */
.editorial-quote {
    margin: 45px 0;
    padding: 30px 40px;
    border-left: 5px solid #3498db;
    background: #f8f9fa;
    font-style: italic;
}

.editorial-quote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #34495e;
    margin: 0;
}

/* Editorial Images Inline */
.editorial-image-inline {
    margin: 50px 0;
}

.editorial-image-inline img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e9ecef;
}

.editorial-image-inline figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

/* CTA Inline */
.cta-inline {
    margin: 60px 0;
    padding: 40px;
    background: #f1f6f9;
    text-align: center;
}

.cta-inline h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-inline p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-service {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #d5dbdb;
    color: #2c3e50;
}

.btn-service {
    background: #ffffff;
    color: #3498db;
    border: 2px solid #3498db;
    width: 100%;
    margin-top: 15px;
}

.btn-service:hover {
    background: #3498db;
    color: #ffffff;
}

/* Services Editorial */
.services-editorial {
    margin: 50px 0;
}

.service-story {
    margin: 60px 0;
    padding-bottom: 60px;
    border-bottom: 1px solid #e9ecef;
}

.service-story:last-child {
    border-bottom: none;
}

.service-story img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e9ecef;
    margin-bottom: 25px;
}

.service-story h2,
.service-story h3 {
    font-size: 1.7rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.3rem;
    color: #27ae60;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    background: #ffffff;
    font-size: 1rem;
    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;
}

.editorial-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

/* Citations and References */
.citation {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

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

.references {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.references p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.citation-link {
    color: #3498db;
    font-weight: 600;
}

/* Disclaimer */
.disclaimer {
    margin: 60px 0 40px 0;
    padding: 30px;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

/* Contact Page Styles */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 40px 0;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-description {
    flex: 2;
    min-width: 320px;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.6;
}

.contact-steps {
    margin: 25px 0 25px 25px;
}

.contact-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

/* Thanks Page */
.thanks-section {
    margin: 60px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 15px 25px;
    background: #e8f5e9;
    display: inline-block;
    margin: 20px 0;
}

.thanks-next {
    margin: 50px 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-next p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 35px 0;
}

.thanks-info {
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #495057;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    margin-top: 80px;
    padding: 50px 5% 20px 5%;
}

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

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 35px;
    }

    .ad-disclosure {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 0;
        border-bottom: 1px solid #e9ecef;
    }

    .editorial-container {
        margin: 20px auto;
    }

    .hero-overlay {
        padding: 25px;
        margin: -60px 10px 0 10px;
    }

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

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

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

    .intro-lead {
        font-size: 1.15rem;
    }

    .editorial-content h2 {
        font-size: 1.5rem;
    }

    .editorial-content h3 {
        font-size: 1.2rem;
    }

    .editorial-quote {
        padding: 20px 25px;
    }

    .editorial-quote p {
        font-size: 1.05rem;
    }

    .cta-inline {
        padding: 30px 20px;
    }

    .form-section {
        padding: 35px 20px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-story img {
        height: 220px;
    }

    .editorial-hero img {
        height: 300px;
    }
}