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

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

h3 {
    font-size: 1.5em;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1.2em;
}

li {
    margin-bottom: 0.5em;
}

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

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

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    padding: 1.5em 2em;
    border-bottom: 1px solid #e5e7eb;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    color: #2563eb;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95em;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Editorial Wrapper - Narrow Centered Text */
.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3em 2em;
}

/* Editorial Hero */
.editorial-hero {
    margin-bottom: 3em;
}

.hero-image-editorial {
    width: 100%;
    margin-bottom: 2em;
    overflow: hidden;
}

.hero-image-editorial img {
    width: 100%;
    height: auto;
}

.editorial-header-text h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.intro-lead {
    font-size: 1.3em;
    color: #4b5563;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3em;
    padding-bottom: 2em;
    border-bottom: 1px solid #e5e7eb;
}

.page-subtitle {
    font-size: 1.2em;
    color: #6b7280;
    margin-top: 0.5em;
}

/* Editorial Content - Story Blocks */
.editorial-content {
    margin-bottom: 2em;
}

.story-block {
    margin-bottom: 2.5em;
}

/* Inline Images */
.inline-image {
    margin: 2.5em 0;
    background-color: #f9fafb;
    overflow: hidden;
}

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

figcaption {
    padding: 1em;
    font-size: 0.9em;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

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

.cta-inline p {
    margin-bottom: 0;
}

.cta-inline a {
    font-weight: 600;
    color: #2563eb;
}

/* Services Reveal Section */
.services-reveal {
    margin: 4em 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3em;
}

.services-intro h2 {
    margin-top: 0;
}

/* Service Cards - Editorial Style */
.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 2em;
    transition: box-shadow 0.3s ease;
}

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

.service-image {
    margin-bottom: 1.5em;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-content h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.service-features {
    margin: 1.5em 0;
    list-style-type: disc;
    padding-left: 1.5em;
}

.service-features li {
    color: #4b5563;
    margin-bottom: 0.5em;
}

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

/* Buttons */
.btn-select-service,
.btn-primary,
.btn-submit {
    display: inline-block;
    padding: 0.8em 2em;
    background-color: #2563eb;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover,
.btn-primary:hover,
.btn-submit:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8em 2em;
    background-color: #6b7280;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

/* Testimonials */
.testimonials-section {
    margin: 4em 0;
    padding: 3em 0;
    background-color: #f9fafb;
}

.testimonials-section h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2em;
}

.testimonial {
    margin: 2em 0;
    padding: 1.5em;
    background-color: #ffffff;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 1.1em;
    font-style: italic;
    color: #374151;
    margin-bottom: 0.8em;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
}

/* Final CTA Section */
.final-cta-section {
    margin: 4em 0;
    padding: 3em 2em;
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
}

.final-cta-content h2 {
    color: #ffffff;
    margin-top: 0;
}

.final-cta-content p {
    color: #cbd5e1;
    font-size: 1.1em;
}

.final-cta-section .btn-primary {
    margin-top: 1em;
}

/* Contact Info Section */
.contact-info-section {
    margin: 3em 0;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.contact-block {
    background-color: #ffffff;
    padding: 2em;
    border: 1px solid #e5e7eb;
}

.contact-block h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.contact-email {
    color: #6b7280;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    margin: 4em 0;
    padding: 3em 2em;
    background-color: #f9fafb;
}

.contact-form-section h2 {
    margin-top: 0;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8em;
    font-size: 1em;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 1em;
}

/* Thanks Section */
.thanks-section {
    padding: 4em 2em;
    text-align: center;
}

.thanks-content h1 {
    color: #059669;
    margin-bottom: 0.5em;
}

.thanks-message {
    font-size: 1.2em;
    color: #374151;
    margin-bottom: 2em;
}

.thanks-details {
    background-color: #f0fdf4;
    padding: 1.5em;
    margin: 2em 0;
    border-left: 4px solid #059669;
}

.thanks-details p {
    margin-bottom: 0.5em;
}

.thanks-actions {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}

/* Legal Wrapper */
.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3em 2em;
}

.legal-content {
    font-size: 0.95em;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.5em;
    margin-top: 2em;
}

.legal-content h3 {
    font-size: 1.2em;
    margin-top: 1.5em;
}

.legal-update {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 3em 2em;
    margin-top: 4em;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1em;
}

.footer-section p {
    font-size: 0.95em;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5em;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2em auto 1em;
    padding-top: 2em;
    border-top: 1px solid #475569;
    font-size: 0.85em;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 1em auto 0;
    padding-top: 2em;
    border-top: 1px solid #475569;
    text-align: center;
    font-size: 0.9em;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5em 2em;
    box-shadow: 0 -4px 12px 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;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95em;
    text-align: center;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6em 1.5em;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

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

.btn-cookie-reject:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

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

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

    .contact-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1;
        min-width: 250px;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .editorial-wrapper {
        padding: 2em 1.5em;
    }

    .nav-minimal {
        padding: 1em 1.5em;
    }

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

    .nav-links {
        gap: 1em;
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .editorial-header-text h1 {
        font-size: 2.2em;
    }

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