/* 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: #2c2c2c;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #0d3d52;
}

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

ul {
    margin: 1rem 0;
    padding-left: 1.8rem;
}

li {
    margin-bottom: 0.6rem;
}

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

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
}

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

/* Editorial Container - Article-like narrow centered text */
.editorial-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

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

.hero-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.hero-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Content Blocks */
.content-block {
    margin: 3rem 0;
}

.opening-statement {
    font-size: 1.5rem;
    line-height: 1.65;
    color: #1a1a1a;
    margin: 2.5rem 0;
}

.inline-image {
    margin: 2rem 0;
    border-radius: 4px;
}

/* Trust Block - Highlighted section */
.trust-block {
    background: #f5f5f5;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #1a5f7a;
}

.trust-inner h3 {
    margin-top: 0;
}

/* Inline CTA Section */
.inline-cta-section {
    margin: 3.5rem 0;
}

.inline-cta {
    background: #1a5f7a;
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
}

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

.inline-cta p {
    color: #e8f4f8;
    margin-bottom: 1.5rem;
}

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

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

/* Services Preview */
.services-preview {
    margin: 4rem 0;
}

.section-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

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

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

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

.service-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.btn-service {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

/* Testimonial Inline */
.testimonial-inline {
    margin: 3.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

blockquote {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin: 0;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* CTA Block Full */
.cta-block-full {
    background: #f9f9f9;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    border-radius: 4px;
}

.cta-block-full h2 {
    margin-top: 0;
}

.btn-primary {
    display: inline-block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

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

.form-section h3 {
    margin-top: 0;
    font-size: 1.8rem;
    text-align: center;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

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

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

.btn-submit {
    width: 100%;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #0d3d52;
}

/* Final Note */
.final-note {
    margin: 3rem 0;
    padding: 1.5rem;
    background: #f0f7fa;
    border-left: 3px solid #1a5f7a;
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.header-lead {
    font-size: 1.25rem;
    color: #6a6a6a;
}

/* Services Full Page */
.services-full {
    margin: 3rem 0;
}

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

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5f7a;
}

.service-detail-body ul {
    list-style: disc;
    margin: 1rem 0 1.5rem 1.8rem;
}

.service-note {
    background: #fff9e6;
    padding: 1rem;
    border-left: 3px solid #ffb800;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

/* Contact Info Section */
.contact-info-section {
    margin: 3rem 0;
}

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

.contact-detail {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.contact-note {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 1rem;
}

/* Thanks Page */
.thanks-section {
    text-align: center;
    padding: 3rem 0;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin: 1.5rem 0 2.5rem;
}

.thanks-details {
    margin: 2rem 0;
}

.service-selected {
    background: #e8f4f8;
    padding: 1.2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
}

.next-steps {
    margin: 3.5rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background: #ffffff;
    padding: 1.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.step h3 {
    margin-top: 0;
    color: #1a5f7a;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

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

/* Legal Page */
.legal-page {
    font-size: 1rem;
}

.legal-page h2 {
    margin-top: 3rem;
}

.legal-page h3 {
    font-size: 1.2rem;
}

/* Footer Editorial */
.footer-editorial {
    background: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #d0d0d0;
    font-size: 0.9rem;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    display: block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.2s ease;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #0d3d52;
}

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

.btn-cookie-alt:hover {
    background: #6a6a6a;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem 3rem;
    }

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

    .opening-statement {
        font-size: 1.3rem;
    }

    .trust-block {
        padding: 1.8rem;
    }

    .inline-cta {
        padding: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-large {
        font-size: 1.8rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .service-cards {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }
}
