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

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

/* Navigation */
.minimal-nav {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

/* Editorial Content Container */
.editorial-content {
    max-width: 100%;
    background-color: #fff;
}

/* Text Column - Narrow centered for editorial feel */
.text-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Editorial */
.hero-editorial {
    background-color: #fff;
    padding: 60px 0 40px;
}

.hero-text-center {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 40px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.5;
    font-weight: 300;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* Page Header */
.page-header {
    background-color: #f5f5f5;
    padding: 60px 20px 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.header-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Typography */
h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: #2c2c2c;
    font-weight: 500;
}

h4 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: #2c2c2c;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
}

/* Inline Images - Editorial Style */
.inline-image-full {
    margin: 40px 0;
}

.inline-image-full img {
    width: 100%;
    border-radius: 4px;
}

.inline-image-right {
    margin: 20px 0 20px 30px;
    max-width: 400px;
    float: right;
}

.inline-image-right img {
    border-radius: 4px;
}

.inline-image-left {
    margin: 20px 30px 20px 0;
    max-width: 400px;
    float: left;
}

.inline-image-left img {
    border-radius: 4px;
}

/* Sections */
.intro-narrative,
.insight-block,
.story-section,
.approach-section,
.about-story,
.values-section,
.team-section,
.how-it-works,
.contact-info-section,
.faq-section,
.closing-section {
    background-color: #fff;
}

/* CTA Inline */
.cta-inline {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 4px solid #1a5490;
    text-align: center;
}

.cta-inline p {
    margin: 0;
    font-size: 1.15rem;
}

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

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

/* Testimonials */
.testimonial-inline {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
}

blockquote {
    border-left: 4px solid #1a5490;
    padding-left: 30px;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
}

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

.pull-quote {
    margin: 50px auto;
    max-width: 600px;
    text-align: center;
    padding: 0 20px;
}

.pull-quote p {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.4;
    color: #1a1a1a;
}

/* Service Cards Editorial */
.service-cards-editorial {
    margin: 40px 0;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 4px;
    border-left: 3px solid #1a5490;
}

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

.service-card p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5490;
    margin: 20px 0 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.card-link {
    display: inline-block;
    color: #1a5490;
    font-weight: 600;
    border-bottom: 2px solid #1a5490;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Services Detailed */
.services-detailed {
    background-color: #fff;
}

.service-detail {
    margin-bottom: 60px;
}

.service-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-detail ul {
    margin: 20px 0 20px 30px;
    font-size: 1.05rem;
}

.service-detail li {
    margin-bottom: 10px;
}

.price-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5490;
    margin: 30px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a5490;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-link:hover {
    background-color: #0d3a6b;
    color: #fff;
}

/* CTA Block */
.cta-block {
    max-width: 700px;
    margin: 70px auto;
    padding: 50px 30px;
    background-color: #1a5490;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

.cta-block h2 {
    color: #fff;
    margin-top: 0;
    font-size: 2rem;
}

.cta-block p {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.cta-link {
    display: inline-block;
    padding: 14px 35px;
    background-color: #fff;
    color: #1a5490;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-link:hover {
    background-color: #f0f0f0;
    color: #1a5490;
    transform: translateY(-2px);
}

/* Forms */
.contact-form-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.form-container-narrow {
    max-width: 600px;
    margin: 40px auto 0;
}

.editorial-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1a5490;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

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

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

/* Contact Details */
.contact-detail {
    margin: 35px 0;
}

.contact-detail h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

/* Values & Steps */
.value-block,
.step {
    margin: 35px 0;
    padding-left: 20px;
    border-left: 3px solid #e0e0e0;
}

.value-block h3,
.step h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #1a5490;
}

/* FAQ */
.faq-item {
    margin: 35px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.faq-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-section {
    padding: 60px 20px;
}

.thanks-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.thanks-info ul {
    margin-top: 20px;
    margin-left: 30px;
}

.thanks-info li {
    margin-bottom: 10px;
}

.thanks-cta {
    text-align: center;
    margin-top: 50px;
}

/* Legal Content */
.legal-content {
    background-color: #fff;
}

.legal-content .text-column {
    max-width: 900px;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin: 40px 0;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
}

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

.cookie-table {
    margin: 25px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.cookie-table h3 {
    margin-top: 0;
}

.cookie-table table {
    width: 100%;
    margin-top: 15px;
}

.cookie-table td {
    padding: 8px 0;
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

.disclaimer p {
    margin: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

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

.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;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 300px;
}

.cookie-content a {
    color: #88c0ff;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #666;
    color: #fff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    .page-header h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 15px;
    }

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

    .inline-image-right,
    .inline-image-left {
        float: none;
        margin: 30px 0;
        max-width: 100%;
    }

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

    .footer-section {
        min-width: 100%;
    }

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

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

    .editorial-form {
        padding: 25px;
    }

    .text-column {
        padding: 30px 20px;
    }

    .cta-block {
        padding: 35px 20px;
    }

    .cta-block h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.6rem;
    }

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

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 10px;
    }

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

    .ad-disclosure {
        font-size: 0.7rem;
        padding: 6px 15px;
    }

    .cookie-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}