/* 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.8;
    color: #2c3e50;
    background-color: #fdfdfb;
}

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

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

a:hover {
    color: #1a5a8a;
}

/* Navigation - Minimal style for Editorial archetype */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Editorial Container - Narrow centered layout */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

.breaking-label {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
}

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

.article-meta {
    font-size: 0.9rem;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Page Header (for static pages) */
.page-header {
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.page-intro {
    font-size: 1.15rem;
    color: #666;
    font-style: italic;
}

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

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

/* Content Sections */
.content-section {
    margin-bottom: 2.8rem;
}

.content-section h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
    margin-top: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.content-section h4 {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    color: #34495e;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.2rem;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.7rem;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 400;
}

/* Inline Image Blocks */
.inline-image-block {
    margin: 2.5rem 0;
}

.inline-image-block img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* Highlight Boxes */
.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
    padding: 1.5rem 1.8rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #2c3e50;
}

.highlight-box ul {
    margin-bottom: 0;
}

/* Inline CTAs */
.cta-inline {
    margin: 2.5rem 0;
    padding: 1.2rem;
    background-color: #fff9e6;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.text-cta {
    color: #2980b9;
    font-weight: 600;
    border-bottom: 2px solid #2980b9;
    transition: all 0.3s ease;
}

.text-cta:hover {
    color: #1a5a8a;
    border-bottom-color: #1a5a8a;
}

/* Numbered Lists */
.numbered-list {
    margin: 2rem 0;
}

.list-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.list-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.list-content p {
    margin-bottom: 0;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f4f6f8;
    border-left: 5px solid #95a5a6;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* CTA Block Highlight */
.cta-block-highlight {
    background: linear-gradient(135deg, #2980b9 0%, #1a5a8a 100%);
    color: #ffffff;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 6px;
    text-align: center;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
    background-color: #2ecc71;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #d5dbdd;
}

.btn-small {
    padding: 0.6rem 1.3rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1.3rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.feature-item h4 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: #2980b9;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    background-color: #e8f5e9;
    padding: 1.8rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.trust-section h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.trust-section p {
    margin-bottom: 0;
}

/* Pricing Reveal Section */
.pricing-reveal {
    margin: 3.5rem 0;
}

.pricing-reveal h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-reveal > p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.pricing-card.featured {
    border-color: #2980b9;
    box-shadow: 0 8px 24px rgba(41, 128, 185, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3,
.pricing-card h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.8rem;
}

.pricing-card li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Urgency Section */
.urgency-section {
    margin: 3rem 0;
}

.urgency-box {
    background-color: #fff3cd;
    border-left: 5px solid #f39c12;
    padding: 1.8rem;
    border-radius: 4px;
}

.urgency-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #d68910;
}

.urgency-box p {
    margin-bottom: 0.8rem;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

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

.form-section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 540px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #d5dbdd;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.6rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.final-cta h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.final-cta p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #2980b9;
}

.faq-item p {
    margin-bottom: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

.sticky-cta-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sticky-cta span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5f7f;
    text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.cookie-link {
    color: #bdc3c7;
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #ffffff;
}

/* Thanks Page Specific Styles */
.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    margin-bottom: 2.5rem;
}

.service-selected {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1rem;
}

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-steps {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.2rem;
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

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

.check-spam-notice {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2.5rem 0;
    text-align: left;
}

.check-spam-notice h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #d68910;
}

.helpful-links {
    margin: 3rem 0;
    text-align: left;
}

.helpful-links h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    display: block;
    background-color: #f8f9fa;
    padding: 1.3rem;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.1);
}

.link-card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2980b9;
}

.link-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.back-home {
    margin-top: 3rem;
}

/* Contact Page Specific Styles */
.contact-info-section {
    margin: 3rem 0;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 1.8rem;
    border-radius: 6px;
}

.contact-info-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2980b9;
}

.contact-info-card p {
    margin-bottom: 0.8rem;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.note-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.address-block p {
    margin-bottom: 0;
}

/* Services Page Specific Styles */
.services-list {
    margin: 2rem 0;
}

.service-item {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-item h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 0.8rem;
}

.service-item p {
    margin-bottom: 0;
}

.process-steps {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1.2rem;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

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

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

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

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

.cookie-preferences {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    margin: 2rem 0;
}

#cookieStatus {
    margin-bottom: 1rem;
}

#resetCookies {
    margin-top: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        gap: 2.5rem;
    }

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

    .page-header h1 {
        font-size: 3rem;
    }

    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .pricing-cards {
        flex-direction: row;
    }

    .pricing-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .sticky-cta {
        display: block;
    }

    .contact-info-grid {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }

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

    .link-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

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

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

    .editorial-container {
        padding: 2rem 1rem;
    }

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

    .sticky-cta {
        display: none;
    }
}
