/* 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: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a8a;
}

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

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: #ecf0f1;
    border: 1px solid #ecf0f1;
}

.btn-cookie-alt:hover {
    background-color: rgba(236, 240, 241, 0.1);
}

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

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

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

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

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

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

/* Editorial Content Layout - Core Archetype */
.editorial-content {
    margin: 0 auto;
}

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

.hero-editorial {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.hero-text-center h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.hero-image-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Text Sections */
.text-section {
    padding: 4rem 0;
}

.text-section.alternate-bg {
    background-color: #fafbfc;
}

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

.text-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-weight: 600;
}

.text-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.text-section ul,
.text-section ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.text-section li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #4a5568;
}

.section-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Image Break Sections */
.image-break {
    margin: 4rem 0;
}

.image-break figure {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.image-break img {
    width: 100%;
    border-radius: 6px;
}

.image-break figcaption {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Inline CTAs */
.inline-cta {
    margin: 2.5rem 0;
}

.link-arrow {
    font-size: 1.1rem;
    color: #2980b9;
    font-weight: 600;
    display: inline-block;
}

.link-arrow:hover {
    color: #1a5a8a;
}

/* Service Cards Editorial Style */
.services-preview {
    padding: 4rem 0;
    background-color: #ffffff;
}

.service-cards-editorial {
    max-width: 780px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    border-left: 3px solid #3498db;
    padding-left: 1.5rem;
}

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

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

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
}

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

.duration {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* CTA Blocks */
.cta-block-centered {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2980b9;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2980b9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 3rem 0;
    background-color: #f0f4f8;
}

.testimonial-inline blockquote {
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
}

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

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

.editorial-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.editorial-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Page Header Editorial */
.page-header-editorial {
    padding: 4rem 0 2rem;
    background-color: #f8f9fa;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail.alternate-bg {
    background-color: #fafbfc;
    padding: 3rem 2rem;
    margin: 0 -2rem;
}

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

.service-detail-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-content {
    max-width: 680px;
}

.service-summary {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #4a5568;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info-section {
    padding: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 680px;
    margin: 0 auto;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
}

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

.thanks-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.next-steps li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Legal Pages */
.legal-page ul {
    list-style-type: disc;
}

.legal-page li {
    line-height: 1.7;
}

.legal-page strong {
    color: #2c3e50;
    font-weight: 600;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.footer-note {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .text-section h2 {
        font-size: 1.6rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        font-size: 1.6rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        gap: 1.5rem;
    }

    .narrow-column {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text-center h1 {
        font-size: 1.6rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .text-section {
        padding: 2.5rem 0;
    }

    .service-cards-editorial {
        gap: 2rem;
    }

    .price {
        font-size: 1.3rem;
    }
}