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

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

/* Editorial Layout - Narrow Centered Content */
.editorial-layout {
    width: 100%;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.main-nav {
    background: #1a1a1a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    color: #9ca3af;
    font-size: 11px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin: 0 16px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

/* Hero Article Section */
.hero-article {
    padding: 64px 0 48px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #111827;
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

/* Narrative Section */
.narrative-section {
    padding: 32px 0 80px;
}

.narrative-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 56px 0 24px;
    font-weight: 600;
    color: #111827;
}

.narrative-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 40px 0 16px;
    font-weight: 600;
    color: #1f2937;
}

.narrative-section p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
}

.narrative-section ul,
.narrative-section ol {
    margin: 24px 0 24px 32px;
    font-size: 17px;
    line-height: 1.8;
}

.narrative-section li {
    margin-bottom: 12px;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 6px;
}

/* Highlight Boxes */
.highlight-box {
    background: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: 24px 28px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    color: #374151;
}

/* Inline CTAs */
.inline-cta {
    margin: 32px 0;
    text-align: center;
}

.text-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 2px solid #93c5fd;
    padding-bottom: 2px;
    transition: all 0.2s;
}

.text-link:hover {
    color: #1d4ed8;
    border-bottom-color: #2563eb;
}

/* Testimonials */
.testimonial-inline {
    background: #f3f4f6;
    padding: 32px;
    margin: 48px 0;
    border-radius: 8px;
    border-left: 3px solid #6b7280;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    color: #1f2937;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

/* Service Details */
.service-detail {
    margin: 64px 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e7eb;
}

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

.service-detail h2 {
    margin-top: 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #059669;
    margin: 16px 0 24px;
}

/* Forms */
.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    padding: 14px 32px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-left: 16px;
    transition: all 0.2s;
}

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

/* CTA Section */
.cta-section {
    background: #f3f4f6;
    padding: 64px 0;
    margin: 64px 0;
}

.cta-section h2 {
    margin-top: 0;
}

/* Info Section */
.info-section {
    padding: 48px 0;
}

/* Contact Info Blocks */
.contact-info-block,
.hours-block,
.email-block {
    margin: 32px 0;
    padding: 24px;
    background: #f9fafb;
    border-radius: 6px;
}

.contact-info-block p,
.hours-block p,
.email-block p {
    margin-bottom: 12px;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #111827;
}

.thanks-message {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 48px;
}

.confirmation-details {
    margin: 48px 0;
}

.confirmation-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1f2937;
}

.confirmation-details h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #374151;
}

.thanks-actions {
    margin: 48px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.additional-info {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.last-updated {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 48px 0 20px;
    color: #1f2937;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #374151;
}

.legal-page p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 32px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d1d5db;
}

.cookie-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #374151;
}

.cookie-table td {
    font-size: 15px;
}

/* Footer */
.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 64px 0 24px;
    margin-top: 80px;
}

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

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

.footer-section h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 48px auto 32px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    text-align: center;
    border-top: 1px solid #374151;
    font-size: 13px;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

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

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-notice {
        margin: 0;
        order: -1;
    }

    .article-content h1 {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
    }

    .narrative-section h2 {
        font-size: 26px;
    }

    .narrative-section h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .btn-secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .article-content h1 {
        font-size: 28px;
    }

    .narrative-section h2 {
        font-size: 22px;
    }

    .service-price {
        font-size: 24px;
    }
}