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

ul {
    list-style-position: inside;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Editorial Content - Narrow Centered Text */
.editorial-content {
    background-color: #fff;
}

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

/* Hero Editorial */
.hero-editorial {
    padding: 3rem 0 2rem;
}

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

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

/* Inline Images */
.inline-image {
    margin: 3rem 0;
}

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

.inline-image-offset {
    margin: 2rem 0 2rem -1.5rem;
    padding-right: 1.5rem;
}

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

/* Story Sections */
.story-section {
    padding: 2rem 0;
}

.story-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 1.35rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c2c2c;
}

.story-section p {
    margin-bottom: 1rem;
}

/* Insight Block */
.insight-block {
    background-color: #f9f9f9;
    padding: 3rem 0;
    margin: 3rem 0;
}

.insight-block .text-narrow {
    padding-top: 0;
    padding-bottom: 0;
}

.insight-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* CTA Inline */
.cta-inline {
    display: inline-block;
    background-color: #1a5490;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

/* Testimonials Inline */
.testimonial-inline {
    padding: 3rem 0;
    background-color: #f5f8fa;
    margin: 3rem 0;
}

.testimonial-inline blockquote {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    border-left: 4px solid #1a5490;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

/* Problem Amplification */
.problem-amplification {
    padding: 3rem 0;
}

.problem-amplification h2 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

/* Services Reveal */
.services-reveal {
    padding: 3rem 0;
    background-color: #fafafa;
}

.services-reveal h2 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-reveal > .text-narrow {
    text-align: center;
    margin-bottom: 2rem;
}

.service-cards-editorial {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-card .price {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1a5490;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #1a5490;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

/* Trust Building */
.trust-building {
    padding: 3rem 0;
}

.trust-building h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.benefits-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.75rem;
    color: #333;
}

.cta-section {
    display: inline-block;
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-section:hover {
    background-color: #c19b2b;
    color: #1a1a1a;
}

/* Final Insight */
.final-insight {
    padding: 3rem 0;
}

.final-insight h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: #f5f8fa;
    margin: 3rem 0 0;
}

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

.form-container-narrow h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container-narrow > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #1a5490;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

/* Disclaimer */
.disclaimer-section {
    padding: 2rem 0;
    background-color: #fff8dc;
    border-top: 2px solid #d4af37;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
}

.disclaimer-text strong {
    color: #333;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #d4af37;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

.sticky-cta a {
    display: block;
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #c19b2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Page Header Narrow */
.page-header-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.page-header-narrow h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.legal-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c2c2c;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: #333;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

/* Services Detailed */
.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-content-narrow {
    max-width: 680px;
}

.service-content-narrow h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content-narrow h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.service-content-narrow ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-content-narrow li {
    margin-bottom: 0.75rem;
}

.price-large {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1a5490;
    margin: 1rem 0 1.5rem;
}

.service-image {
    margin: 1rem 0;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

/* Contact Info */
.contact-info-section {
    padding: 2rem 0;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

.contact-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f5f8fa;
    border-left: 4px solid #1a5490;
    font-size: 0.95rem;
}

.office-location,
.meeting-section,
.faq-contact {
    padding: 2rem 0;
}

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

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Values Section */
.values-section {
    padding: 2rem 0;
}

.values-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.values-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.numbers-section {
    padding: 2rem 0;
    background-color: #f9f9f9;
    margin: 2rem 0;
}

.stats-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.stats-list li {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #1a5490;
}

.cta-section-page {
    padding: 3rem 0;
    text-align: center;
}

.cta-section-page h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

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

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-selected {
    background-color: #f5f8fa;
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-weight: bold;
    color: #1a5490;
}

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

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    background-color: #1a5490;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #555;
}

.thanks-info {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #555;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 3rem;
    }

    .inline-image-offset {
        margin-left: -3rem;
        padding-right: 3rem;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-content-narrow {
        flex: 1;
    }

    .service-image {
        flex: 0 0 400px;
    }

    .sticky-cta {
        display: block;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-container {
        flex-wrap: nowrap;
    }

    .cookie-content {
        flex-wrap: nowrap;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}