/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

/* Editorial Layout - Main Container */
.editorial-layout {
    max-width: 100%;
}

/* Content Narrow - Article-like Structure */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Sections */
.hero-editorial {
    padding: 4rem 0 2rem;
    background-color: #fafafa;
}

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

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 4rem 0 2rem;
    background-color: #fafafa;
}

.page-hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: #666;
}

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

.story-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    line-height: 1.3;
}

.story-section h2:first-child {
    margin-top: 0;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Inline Images */
.inline-image {
    margin: 3rem auto;
    max-width: 100%;
}

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

/* Inline CTA */
.inline-cta {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.inline-cta p {
    margin-bottom: 1rem;
    color: #333;
}

.link-cta {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

.problem-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.problem-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Insight Section */
.insight-reveal {
    padding: 4rem 0;
}

.insight-reveal h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-reveal p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.insight-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2.5rem 0;
}

.insight-box p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
}

.insight-box em {
    font-style: italic;
}

/* Trust Building Section */
.trust-building {
    padding: 4rem 0;
    background-color: #fafafa;
}

.trust-building h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-building p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 3px solid #e0e0e0;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
}

.benefits-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

/* Services List */
.services-list {
    margin-top: 3rem;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

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

.btn-select-service,
.btn-submit,
.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-select-service:hover,
.btn-submit:hover,
.btn-primary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
    color: #2c3e50;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 0;
}

.urgency-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.urgency-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.form-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Services Detailed */
.services-detailed {
    padding: 2rem 0;
}

.services-detailed p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
}

.service-detailed {
    margin-bottom: 5rem;
}

.service-detailed h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

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

.service-detailed p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.service-detailed ul {
    margin: 1.5rem 0 2rem 2rem;
}

.service-detailed li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.contact-block strong {
    color: #2c3e50;
    font-weight: 600;
}

.map-placeholder {
    background-color: #f5f5f5;
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 3rem;
}

.map-placeholder p {
    font-size: 1.05rem;
    color: #666;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 0;
    background-color: #fafafa;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-content {
    margin-top: 3rem;
    text-align: left;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.thanks-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem;
}

.service-info-box {
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 1.5rem;
    margin: 2rem 0;
}

.service-info-box p {
    margin: 0;
    color: #333;
    font-weight: 600;
}

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

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

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

/* Legal Pages */
.legal-page {
    background-color: #fafafa;
}

.legal-content {
    padding: 2rem 0 4rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 1.8rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1001;
    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;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

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

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

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero-editorial h1,
    .page-hero h1,
    .thanks-hero h1 {
        font-size: 1.8rem;
    }

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

    .story-section h2,
    .problem-section h2,
    .insight-reveal h2,
    .trust-building h2,
    .benefits-section h2,
    .cta-section h2,
    .urgency-section h2,
    .final-cta h2,
    .form-section h2,
    .service-detailed h2 {
        font-size: 1.6rem;
    }

    .content-narrow,
    .hero-content-narrow {
        padding: 0 1.25rem;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }

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

    .contact-info {
        gap: 2rem;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

    .hero-editorial h1,
    .page-hero h1 {
        font-size: 1.5rem;
    }
}