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

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

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

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #4a90e2;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #357abd;
}

.btn-cookie-secondary {
    background: transparent;
    border: 1px solid #666;
    color: #ffffff;
}

.btn-cookie-secondary:hover {
    background: #333;
}

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1a5490;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-links a {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Article Hero */
.article-hero {
    margin-bottom: 3rem;
    text-align: center;
}

.article-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.article-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 2.5rem;
    overflow: hidden;
    border-radius: 6px;
}

.hero-image img {
    width: 100%;
}

/* Article Content */
.article-content {
    font-size: 1.15rem;
}

.lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

/* Inline Images */
.content-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
}

/* Inline Quote */
.inline-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-left: 4px solid #1a5490;
    padding-left: 2rem;
    color: #333;
    background: #f5f5f5;
    border-radius: 0 6px 6px 0;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-style: normal;
}

/* Pillars Section */
.pillars-section {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar-card {
    padding: 1.8rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

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

.pillar-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #1a5490;
}

.pillar-card p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

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

.btn-inline {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: #1a5490;
    color: #ffffff;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
}

/* Inline CTA Block */
.inline-cta-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
}

.inline-cta-block h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.inline-cta-block p {
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #ffffff;
    color: #1a5490;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.15rem;
}

/* Services Editorial */
.services-editorial {
    margin: 2.5rem 0;
}

.service-item {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h2,
.service-item h3 {
    margin-top: 1.5rem;
}

.service-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-item ul {
    margin: 1.5rem 0;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.5rem 0 0.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.price-details {
    font-size: 0.95rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 0.8rem 2rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #357abd;
    transform: translateY(-2px);
}

/* Final CTA Block */
.final-cta-block {
    margin: 3.5rem 0;
    padding: 3rem;
    background: #f5f7fa;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.final-cta-block h3 {
    margin-top: 0;
    font-size: 2rem;
    color: #1a1a1a;
}

.final-cta-block p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Form Section */
.form-section {
    margin: 3.5rem 0;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #1a1a1a;
}

.form-intro {
    margin-bottom: 2rem;
    color: #555;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #1a5490;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

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

.contact-text-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    color: #1a5490;
}

.faq-item p {
    margin-bottom: 0;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
}

.thanks-message {
    text-align: left;
}

.next-steps {
    margin: 2.5rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    margin-bottom: 0;
}

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

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resource-link {
    display: block;
    padding: 1rem 1.5rem;
    background: #f5f7fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #1a5490;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #e8eef5;
    border-color: #4a90e2;
}

.thanks-footer-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff9e6;
    border-left: 4px solid #ffcc00;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-content {
    font-size: 1.05rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-update-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #666;
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
}

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

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

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.footer-brand {
    flex: 1 1 250px;
}

.footer-brand strong {
    font-size: 1.3rem;
    color: #ffffff;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-links {
    flex: 0 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.footer-links a {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

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

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #1a5490;
    color: #ffffff;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(26, 84, 144, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #0d3a6b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

    .article-title {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-content {
        font-size: 1.05rem;
    }

    .lead-paragraph {
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .inline-quote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }

    .pillars-section {
        gap: 1rem;
    }

    .inline-cta-block {
        padding: 2rem 1.5rem;
    }

    .inline-cta-block h3 {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .btn-submit {
        align-self: stretch;
    }

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

    .cookie-content {
        gap: 1rem;
    }

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

    .btn-cookie {
        width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .editorial-container {
        max-width: 650px;
    }

    .article-title {
        font-size: 2.4rem;
    }
}

@media (min-width: 1025px) {
    .nav-links a {
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #1a5490;
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }
}