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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

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

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

a:hover {
    color: #0d3f52;
}

/* Navigation - Minimal Editorial Style */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5f7a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #444;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Article-like Structure */
.editorial-container {
    max-width: 100%;
    background: #fff;
}

/* Narrow Content - Core Editorial Layout */
.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Editorial Style */
.hero-editorial {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
}

.hero-text-center {
    max-width: 720px;
    margin: 0 auto 3rem;
}

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

.lead-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-image-inline {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Story Section - Main Content */
.story-section {
    padding: 3rem 0;
}

.drop-cap::first-letter {
    font-size: 4rem;
    line-height: 0.9;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    color: #1a5f7a;
    font-weight: 700;
}

.narrow-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
}

.narrow-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #333;
}

.narrow-content p {
    margin-bottom: 1.5rem;
}

.narrow-content ul,
.narrow-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

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

/* Inline Images - Editorial Style */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Inline CTAs - Inside Content */
.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f5f9fa;
    border-left: 4px solid #1a5f7a;
}

.cta-link-inline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5f7a;
    text-decoration: underline;
}

.cta-link-inline:hover {
    color: #0d3f52;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: #fafafa;
    border-left: 3px solid #ddd;
    font-style: italic;
    font-size: 1.15rem;
    color: #444;
}

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

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: #f9f9f9;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.trust-item h3 {
    margin-top: 0;
}

/* Benefits Section */
.benefits-reveal {
    padding: 3rem 0;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

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

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-button-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #1a5f7a;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.cta-button-inline:hover {
    background: #f0f0f0;
}

/* Services Pricing */
.services-pricing {
    padding: 3rem 0;
    background: #f5f5f5;
}

.services-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem;
    color: #1a5f7a;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem 2rem;
    background: #1a5f7a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Social Proof */
.social-proof {
    padding: 3rem 0;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fafafa;
    padding: 1.8rem;
    border-left: 3px solid #1a5f7a;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #444;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Form Section */
.form-section {
    padding: 3rem 0;
    background: #fff;
}

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

.contact-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

/* Urgency Section */
.urgency-section {
    padding: 3rem 0;
    background: #fff5e6;
}

.urgency-box {
    padding: 2rem;
    background: #fff;
    border: 2px solid #ff9800;
    border-radius: 4px;
}

.urgency-box h3 {
    margin-top: 0;
    color: #ff6f00;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a5f7a;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 90;
    display: none;
}

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

.sticky-cta-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #fff;
    color: #1a5f7a;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #f0f0f0;
}

/* Footer Editorial */
.footer-editorial {
    background: #2a2a2a;
    color: #aaa;
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #777;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.85;
}

/* Page Header */
.page-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #1a5f7a;
    color: #fff;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0d3f52;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #f0f0f0;
    color: #333;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* CTA Box Center */
.cta-box-center {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #f5f9fa;
    text-align: center;
    border-radius: 4px;
}

.cta-box-center h3 {
    margin: 0 0 1rem;
    color: #1a5f7a;
}

.cta-box-center p {
    margin-bottom: 1.5rem;
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

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

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

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1rem 0;
}

.highlighted-service {
    background: #f5f9fa;
    padding: 2rem;
    border-radius: 4px;
    border: 2px solid #1a5f7a;
}

/* Process Steps */
.process-steps {
    margin: 2.5rem 0;
}

.step {
    margin-bottom: 2rem;
}

.step h4 {
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

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

.contact-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.contact-item h3 {
    margin-top: 0;
    color: #1a5f7a;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    margin: 2.5rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.faq-item h4 {
    margin-top: 0;
    color: #1a5f7a;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: 2rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

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

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

.selected-service {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: #f5f9fa;
    border-left: 4px solid #1a5f7a;
    display: inline-block;
}

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

.step-list {
    margin-top: 2rem;
}

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

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

.step-content h3 {
    margin: 0 0 0.5rem;
    color: #1a5f7a;
}

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

.thanks-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f5f9fa;
    border-radius: 4px;
}

.thanks-cta {
    margin-top: 2.5rem;
}

/* Legal Page */
.legal-page {
    padding: 3rem 0;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-page th,
.legal-page td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #ddd;
}

.legal-page th {
    background: #f5f5f5;
    font-weight: 600;
}

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

    .nav-links {
        gap: 1rem;
    }

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

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

    .narrow-content h2 {
        font-size: 1.6rem;
    }

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

    .stats-list {
        gap: 1rem;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .trust-grid {
        flex-direction: row;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .stats-list {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}