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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: #1a1a1a;
    background-color: #fafafa;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #111;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

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

li {
    margin-bottom: 0.5rem;
}

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f3f4f6;
    color: #6b7280;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    border-bottom: 1px solid #e5e7eb;
}

/* Navigation */
.minimal-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.logo:hover {
    text-decoration: none;
    color: #2563eb;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9375rem;
    color: #4b5563;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #111;
    text-decoration: none;
}

/* Editorial Content Container */
.editorial-content {
    background-color: #ffffff;
}

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

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

.header-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
}

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 3rem 2rem 2rem;
    color: #ffffff;
}

.header-overlay h1 {
    color: #ffffff;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 0;
    font-family: 'Georgia', serif;
}

/* Article Body */
.article-body {
    background-color: #ffffff;
}

.lead-text {
    font-size: 1.3125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.image-caption {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.75rem;
    padding: 0 1rem;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background-color: #f8fafc;
    font-style: italic;
    font-size: 1.125rem;
    color: #1e293b;
}

blockquote p {
    margin-bottom: 0;
}

/* Inline CTA */
.cta-inline {
    background-color: #eff6ff;
    border: 2px solid #2563eb;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.cta-inline h3 {
    margin-top: 0;
    color: #1e40af;
    font-size: 1.5rem;
}

.cta-inline p {
    margin-bottom: 1.25rem;
    color: #334155;
}

.cta-link {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.cta-link:hover {
    background-color: #1d4ed8;
    text-decoration: none;
    color: #ffffff;
}

/* Testimonials */
.testimonial-inline {
    background-color: #f9fafb;
    border-left: 4px solid #10b981;
    padding: 2rem;
    margin: 3rem 0;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e5e7eb;
}

.services-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    transition: box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-top: 0;
    color: #1e40af;
    font-size: 1.5rem;
}

.service-card ul {
    margin-top: 1.5rem;
}

.service-card li {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-price {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin: 1.5rem 0 1rem;
}

.select-service {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select-service:hover {
    background-color: #1d4ed8;
}

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

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    font-family: 'Georgia', serif;
    line-height: 1.6;
}

.submit-button {
    background-color: #059669;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: #047857;
}

/* Closing Text */
.closing-text {
    font-size: 1.125rem;
    color: #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Footer */
.article-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-disclaimer {
    background-color: #374151;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.footer-disclaimer h3 {
    color: #f3f4f6;
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.footer-disclaimer p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: #f3f4f6;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-column a {
    color: #9ca3af;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    border-top: 2px solid #374151;
    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 {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: #059669;
    color: #ffffff;
}

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

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

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

/* About Page */
.about-page .cta-section {
    background-color: #f0fdf4;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    border: 2px solid #10b981;
}

.about-page .cta-section h3 {
    color: #065f46;
    margin-top: 0;
}

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

.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-align: center;
}

.cta-button {
    background-color: #2563eb;
    color: #ffffff;
}

.cta-button:hover {
    background-color: #1d4ed8;
    text-decoration: none;
    color: #ffffff;
}

.cta-button-secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-button-secondary:hover {
    background-color: #eff6ff;
    text-decoration: none;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.next-steps {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 3rem;
}

.next-steps h2 {
    margin-top: 0;
    color: #1e40af;
}

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

.contact-section {
    background-color: #f9fafb;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border-left: 4px solid #2563eb;
}

.contact-section h2 {
    margin-top: 0;
    color: #1e40af;
    font-size: 1.25rem;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 1.125rem;
    color: #1f2937;
    background-color: #e5e7eb;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.email-note,
.hours-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.response-info {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 4px;
    border: 2px solid #2563eb;
    margin-bottom: 2rem;
}

.response-info h2 {
    margin-top: 0;
    color: #1e40af;
}

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
}

.thanks-message {
    text-align: left;
}

.confirmation-details {
    margin: 3rem 0;
}

.next-step {
    background-color: #f9fafb;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #10b981;
}

.next-step h3 {
    margin-top: 0;
    color: #065f46;
    font-size: 1.25rem;
}

.next-step p {
    margin-bottom: 0;
    color: #374151;
}

.meanwhile-section {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 3rem;
}

.meanwhile-section h2 {
    margin-top: 0;
    color: #1e40af;
}

/* Legal Pages */
.legal-page {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.25rem;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9375rem;
}

.cookie-table thead {
    background-color: #f3f4f6;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1f2937;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .subtitle {
        font-size: 1.125rem;
    }

    .content-narrow {
        padding: 2rem 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content p {
        min-width: 100%;
    }

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

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

    .cta-button,
    .cta-button-secondary {
        width: 100%;
    }

    .inline-image {
        margin: 2rem -1.5rem;
    }

    .header-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
        margin: 2rem -1.5rem;
    }
}
