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

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d7a;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #555;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    text-transform: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5aa0;
}

/* Editorial Container - Article-like centered layout */
.editorial-container {
    background-color: #ffffff;
    margin: 0 auto;
    max-width: 100%;
}

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

/* Hero - Editorial Story Style */
.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

.hero-text-overlay {
    padding: 2.5rem 2rem;
    background-color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
}

/* Sections */
.story-intro,
.problem-amplification,
.insight-revelation,
.trust-building,
.methodology-reveal,
.services-section,
.form-section,
.final-push {
    margin-bottom: 2rem;
}

/* Inline Images - Editorial Style */
.content-image-inline {
    margin: 2.5rem 0;
}

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

/* Inline CTAs */
.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.link-cta {
    font-size: 1.2rem;
    color: #2c5aa0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-cta:hover {
    color: #1a3d7a;
}

/* Blockquotes */
.insight-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5aa0;
}

/* Two Column Text */
.two-column-text {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.two-column-text .column {
    flex: 1;
    min-width: 280px;
}

.two-column-text ul {
    list-style: none;
    padding-left: 0;
}

.two-column-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.two-column-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-size: 1.3rem;
}

/* Testimonials - Inline Editorial Style */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.testimonial-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Methodology Blocks */
.methodology-block {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.methodology-block:last-child {
    border-bottom: none;
}

.methodology-block h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    border-radius: 4px;
}

.inline-cta-box p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    border: 2px solid #e0e0e0;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: #2c5aa0;
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    border-radius: 20px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.2rem;
}

.price-tag {
    font-size: 2rem;
    color: #2c5aa0;
    font-weight: bold;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.btn-primary {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a3d7a;
    color: #ffffff;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

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

.btn-select-service {
    background-color: #2c5aa0;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: #1a3d7a;
}

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

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Forms */
.contact-form {
    margin-top: 2.5rem;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

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

.form-privacy {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #555;
}

/* Urgency Element */
.urgency-element {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.urgency-element p {
    margin-bottom: 0;
    color: #856404;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    font-size: 0.95rem;
    color: #b0b0b0;
}

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sticky-cta-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.cookie-banner.hidden {
    display: none;
}

.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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    min-width: 300px;
}

.cookie-content a {
    color: #6db3f2;
    text-decoration: underline;
}

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

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

/* Services Detailed */
.service-detail {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

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

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

.service-header h2 {
    margin: 0;
    flex: 1;
}

.price-large {
    font-size: 2.5rem;
    color: #2c5aa0;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

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

.detailed-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.detailed-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.detailed-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.service-cta {
    margin-top: 2rem;
}

.featured-service {
    position: relative;
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 4px;
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

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

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

.faq-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.8rem;
}

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

/* Contact Info Grid */
.contact-info-grid {
    display: flex;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
}

.contact-info-item h3 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2c5aa0;
}

.map-placeholder {
    margin: 2rem 0;
}

.directions {
    margin-top: 2rem;
}

/* Stats */
.stat-block {
    margin: 2.5rem 0;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: #2c5aa0;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-block p {
    font-size: 1.1rem;
    color: #555;
}

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

.success-icon {
    margin: 0 auto 2rem;
}

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

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

.step-icon {
    width: 45px;
    height: 45px;
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.meanwhile-section {
    text-align: left;
    margin: 3rem 0;
}

.preparation-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.preparation-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.preparation-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* Legal Pages */
.legal-page {
    font-family: 'Arial', sans-serif;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    color: #2c5aa0;
    margin-top: 2.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

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

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

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

    .nav-links {
        gap: 1rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .two-column-text {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
    }

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

    .contact-info-grid {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .narrow-content {
        padding: 2rem 1.5rem;
    }

    .hero-text-overlay {
        padding: 1.5rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}