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

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

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

a:hover {
    color: #0d3d4f;
}

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5f7a;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

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

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

/* Main Content - Editorial Story Archetype */
.main-content {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

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

.intro-meta {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-top: 0.8rem;
}

/* Hero Image */
.hero-image {
    margin: 2.5rem 0 3rem;
}

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

/* Story Sections */
.story-section {
    margin-bottom: 2.5rem;
}

.story-section h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
    font-weight: 600;
}

.story-section h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.8rem;
    color: #333;
    font-weight: 600;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.story-section p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

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

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

/* Blockquote */
blockquote {
    border-left: 4px solid #1a5f7a;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #444;
}

blockquote p {
    font-size: 1.15rem;
    line-height: 1.7;
}

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

/* Highlight Box */
.highlight-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #1a5f7a;
    margin: 2.5rem 0;
}

.highlight-box h3 {
    margin-top: 0;
}

/* Lists */
.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.benefit-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTAs - Inline within editorial flow */
.inline-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.cta-link {
    display: inline-block;
    color: #1a5f7a;
    font-size: 1.1rem;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #0d3d4f;
    border-bottom-color: #0d3d4f;
}

.section-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem 1.5rem;
    background-color: #f5f8fa;
    border-radius: 4px;
}

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

.cta-button {
    display: inline-block;
    background-color: #1a5f7a;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0d3d4f;
    color: #fff;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #fff;
    color: #1a5f7a;
    padding: 0.9rem 2rem;
    border: 2px solid #1a5f7a;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 1rem;
}

.cta-button-secondary:hover {
    background-color: #1a5f7a;
    color: #fff;
}

/* Testimonial */
.testimonial-inline {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #1a5f7a;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* Services - Editorial Style */
.services-editorial {
    margin: 2.5rem 0;
}

.service-item,
.service-item-detailed {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h3,
.service-item-detailed h2 {
    color: #1a5f7a;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 0.8rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 1.05rem;
    color: #1a5f7a;
    font-weight: 600;
}

.service-price-large {
    font-size: 1.3rem;
    color: #1a5f7a;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: #1a5f7a;
    color: #fff;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.service-cta:hover {
    background-color: #0d3d4f;
    color: #fff;
}

/* Form Section */
.form-section {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
    color: #1a5f7a;
}

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

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

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

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

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

.form-submit {
    background-color: #1a5f7a;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #0d3d4f;
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: #fff9e6;
    border-left: 4px solid #f4a300;
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    color: #666;
}

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

/* References Section */
.references-section {
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.references-section h3 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.references-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.references-list a {
    color: #1a5f7a;
    word-break: break-word;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-block {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contact-block h2 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    color: #333;
    background-color: #fff;
    padding: 0.8rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

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

/* FAQ Items */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
}

/* Thanks Page */
.thanks-container {
    text-align: center;
}

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

.thanks-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.thanks-steps li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.thanks-note {
    background-color: #fff9e6;
    border-left: 4px solid #f4a300;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

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

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

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin: 2.5rem 0 1.2rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #2a2a2a;
    margin: 2rem 0 1rem;
}

.legal-section h4 {
    font-size: 1.15rem;
    color: #333;
    margin: 1.5rem 0 0.8rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.3rem;
}

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

.legal-section ol {
    list-style: decimal;
    padding-left: 2rem;
    margin-bottom: 1.3rem;
}

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

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

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

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

.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;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    .article-header h1 {
        font-size: 3rem;
    }

    .inline-image-left {
        float: left;
        width: 48%;
        margin: 0.5rem 2rem 1.5rem 0;
    }

    .inline-image-right {
        float: right;
        width: 48%;
        margin: 0.5rem 0 1.5rem 2rem;
    }

    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1;
        min-width: 280px;
    }

    .service-meta {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        justify-content: center;
        gap: 1rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .form-section {
        padding: 1.5rem 1rem;
    }

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

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

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

    .cta-button-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.75rem;
    }

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

    .story-section h2 {
        font-size: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}