/* 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;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

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

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: #0d3a6b;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #4a4a4a;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

/* Editorial Layout - Narrow Column */
.editorial-layout {
    background-color: #fff;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero - Editorial Style */
.hero-editorial {
    padding: 4rem 2rem 3rem;
    background-color: #fff;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* Page Header - Editorial */
.page-header-editorial {
    padding: 3.5rem 2rem 2.5rem;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.intro-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.65;
}

/* Content Blocks */
.content-block {
    padding: 3.5rem 2rem;
}

.content-block.alternate-bg {
    background-color: #f8f8f8;
}

/* Image Breaks - Full Width */
.image-break {
    width: 100%;
    margin: 0;
}

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

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

.inline-cta.centered {
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5490;
    border-bottom: 2px solid #1a5490;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #0d3a6b;
    border-bottom-color: #0d3a6b;
}

.cta-button {
    display: inline-block;
    background-color: #1a5490;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button:hover {
    background-color: #0d3a6b;
    color: #fff;
}

/* Testimonials - Inline */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #1a5490;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

/* Insight List */
.insight-list {
    margin: 2rem 0;
}

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

.insight-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.insight-item p {
    color: #555;
}

/* Service Cards - Editorial */
.services-preview {
    margin: 2.5rem 0;
}

.service-card-editorial {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card-editorial p {
    color: #555;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a5490;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 2rem;
}

/* Process Steps */
.process-steps {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.process-steps li {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.process-steps strong {
    color: #1a1a1a;
}

/* Forms - Editorial Style */
.editorial-form {
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    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: #1a5490;
}

.form-group textarea {
    resize: vertical;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
}

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

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

/* Service Details */
.service-detail-section {
    background-color: #fff;
}

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

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

.service-detail h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-detail ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Benefit List */
.benefit-list {
    margin: 2.5rem 0;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.benefit-item p {
    color: #555;
}

/* Included List */
.included-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.included-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Philosophy Points */
.philosophy-points {
    margin: 2.5rem 0;
}

.philosophy-item {
    margin-bottom: 2.5rem;
}

.philosophy-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.philosophy-item p {
    color: #555;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
}

/* Contact Info */
.contact-info-block {
    margin: 2.5rem 0;
}

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

.contact-method h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

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

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.contact-process {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.contact-process li {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.location-details {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.location-details li {
    margin-bottom: 0.75rem;
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 2rem;
    text-align: center;
}

.centered-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.thanks-details {
    text-align: left;
    margin: 2.5rem 0;
}

.thanks-details h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thanks-details ol {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.thanks-details li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-note {
    font-size: 0.95rem;
    color: #777;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.meanwhile-suggestions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.suggestion-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.suggestion-item p {
    margin-bottom: 0.75rem;
    color: #555;
}

.text-link {
    color: #1a5490;
    font-weight: 600;
}

/* Values List */
.values-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.values-list li {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page .narrow-column {
    max-width: 800px;
}

.legal-date {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-section ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-cookie-accept {
    background-color: #1a5490;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #0d3a6b;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    h3 {
        font-size: 1.35rem;
    }

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

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

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

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

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

    .thanks-actions {
        width: 100%;
    }

    .thanks-actions .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .narrow-column {
        padding: 0 1rem;
    }

    .hero-editorial {
        padding: 3rem 1rem 2rem;
    }

    .content-block {
        padding: 2.5rem 1rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
}
