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

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a8a;
}

ul {
    list-style-position: inside;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

.btn-cookie:hover {
    background-color: #1a5a8a;
}

.btn-cookie.secondary {
    background-color: #7f8c8d;
}

.btn-cookie.secondary:hover {
    background-color: #5d6d6e;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    color: #2c3e50;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: #2980b9;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 3px;
    font-style: italic;
}

/* Editorial Content - Main Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.story-flow {
    background-color: #fff;
    padding: 3rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ecf0f1;
}

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

.article-header.centered {
    text-align: center;
    border-bottom: none;
}

.intro-lead {
    font-size: 1.25rem;
    color: #5d6d6e;
    line-height: 1.6;
    font-weight: 300;
}

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

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

.inline-image.small {
    margin: 2rem auto;
    max-width: 600px;
}

/* Narrative Blocks */
.narrative-block {
    margin: 2.5rem 0;
}

.narrative-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.narrative-block h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
    font-weight: 600;
}

.narrative-block p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.narrative-block.centered {
    text-align: center;
}

/* Insight Blocks */
.insight-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
}

.insight-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-block p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

/* Service Highlights */
.service-highlight {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.service-highlight h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.service-highlight p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

.price-tag {
    font-weight: 600;
    color: #2980b9;
    font-size: 1.1rem;
    margin-top: 1rem;
}

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

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

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content {
    margin-top: 1.5rem;
}

.service-details-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.service-details-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details-box ul {
    list-style-position: outside;
    margin-left: 1.5rem;
}

.service-details-box li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.price-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2980b9;
    margin-top: 1.5rem;
}

/* Process Blocks */
.process-block {
    margin: 2.5rem 0;
}

.process-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.process-steps {
    list-style-position: outside;
    margin-left: 1.5rem;
    counter-reset: step-counter;
}

.process-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    counter-increment: step-counter;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    font-style: italic;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* CTA Elements */
.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    text-align: left;
}

.cta-block.centered {
    text-align: center;
}

.cta-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-block p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2980b9;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a5a8a;
    color: #fff;
    transform: translateY(-2px);
}

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

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    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: #2980b9;
}

.btn-submit {
    padding: 0.9rem 2rem;
    background-color: #27ae60;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e8449;
}

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

.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-detail {
    margin: 1.5rem 0;
}

.contact-detail p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.address-block {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.address-block p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.15rem;
    padding: 0.5rem 0;
}

.hours-block {
    margin: 1.5rem 0;
}

.hours-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.hours-list li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.preparation-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.preparation-list li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.service-selected {
    font-weight: 600;
    color: #27ae60;
    margin-top: 1rem;
}

.helpful-links {
    list-style-position: outside;
    margin-left: 1.5rem;
    text-align: left;
    margin-top: 1rem;
}

.helpful-links li {
    margin-bottom: 0.75rem;
}

/* Legal Pages */
.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style-position: outside;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    text-align: left;
}

.cookies-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

.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;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

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

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

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

/* Final Narrative */
.final-narrative {
    margin: 3rem 0;
}

.final-narrative p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

/* Services Preview */
.services-preview {
    margin: 3rem 0;
}

.services-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-preview p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

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

    .nav-links {
        width: 100%;
        justify-content: center;
    }

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

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

    .story-flow {
        padding: 2rem 1.5rem;
    }

    .editorial-content {
        padding: 1rem;
    }

    .narrative-block h2 {
        font-size: 1.5rem;
    }

    .service-detail h2 {
        font-size: 1.6rem;
    }

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

    .cookie-content {
        font-size: 0.9rem;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}