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

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

/* Editorial Navigation */
.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Editorial Container */
.editorial-container {
    background-color: #ffffff;
    max-width: 100%;
}

/* Content Narrow (Article Style) */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e8;
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #5a5a5a;
    font-weight: 400;
    font-style: italic;
}

/* Typography */
.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
    font-weight: 400;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2a2a2a;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    line-height: 1.4;
    color: #2a2a2a;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

p {
    margin-bottom: 24px;
}

ul, ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

li {
    margin-bottom: 12px;
}

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

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

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

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

.image-caption {
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 12px;
    padding: 0 10px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s;
    margin-right: 15px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-select-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2a5d84;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

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

/* CTA Inline */
.cta-inline {
    margin: 50px 0;
    text-align: center;
}

.cta-section-centered {
    margin: 60px 0;
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

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

.service-card-editorial {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2a5d84;
    margin: 25px 0 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Testimonial */
.testimonial-inline {
    margin: 50px 0;
    padding: 35px 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #2a5d84;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #6a6a6a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Form Section */
.form-section {
    background-color: #f8f8f8;
    padding: 70px 30px;
    margin-top: 60px;
}

.editorial-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5d84;
}

.form-notice {
    padding: 15px;
    background-color: #e7f3ff;
    border-left: 4px solid #2a5d84;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    display: none;
}

.form-notice.active {
    display: block;
}

/* Contact Info */
.contact-info-block {
    background-color: #f5f5f5;
    padding: 35px;
    margin: 40px 0;
    border-radius: 4px;
}

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

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

/* Thanks Page */
.thanks-section {
    text-align: center;
    padding-top: 40px;
}

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

.thanks-details {
    margin: 30px 0;
}

.service-confirmation {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
}

.process-list {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
}

/* Legal Pages */
.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 22px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

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

.cookie-table th {
    font-weight: 600;
    font-size: 15px;
}

.cookie-table td {
    font-size: 14px;
}

/* Footer Editorial */
.footer-editorial {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 30px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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 {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    color: #3a3a3a;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-accept {
    background-color: #2a5d84;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1e4361;
}

.btn-reject {
    background-color: transparent;
    color: #3a3a3a;
    border: 2px solid #d0d0d0;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-editorial {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    h2 {
        font-size: 28px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
