/* 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.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

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

li {
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.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.9375rem;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1e40af;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #4b5563;
}

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

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
    text-decoration: none;
}

/* Editorial Wrapper - Main Container */
.editorial-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Story Flow - Editorial Layout */
.story-flow {
    max-width: 100%;
}

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

/* Hero Editorial Section */
.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

.hero-text-overlay {
    background-color: #ffffff;
    max-width: 680px;
    margin: -4rem auto 0;
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text-overlay h1 {
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Story Intro Section */
.story-intro {
    padding: 3rem 0;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

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

.inline-cta-box p {
    margin-bottom: 1rem;
}

.cta-inline {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-inline:hover {
    color: #1e40af;
}

/* Highlight Box */
.highlight-box {
    background-color: #fef3c7;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Services Editorial */
.services-editorial {
    margin: 3rem 0;
}

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

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

.service-includes {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
}

.btn-service:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Service Card Detailed (for services page) */
.service-card-detailed {
    border-top: 3px solid #2563eb;
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 0 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-description {
    font-size: 1.0625rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.service-features {
    background-color: #f9fafb;
    border-radius: 4px;
    padding: 1.5rem 1.5rem 0.25rem 2.5rem;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.75rem;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9fafb;
    border-left: 4px solid #6b7280;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.0625rem;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

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

/* CTA Section Embedded */
.cta-section-embedded {
    background-color: #1e40af;
    color: #ffffff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
}

.cta-section-embedded h3 {
    color: #ffffff;
    margin-top: 0;
}

.cta-section-embedded p {
    color: #dbeafe;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary-large {
    display: inline-block;
    background-color: #ffffff;
    color: #1e40af;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 1rem;
}

.btn-primary-large:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #1e40af;
}

/* Final CTA Box */
.final-cta-box {
    background-color: #eff6ff;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    border: 2px solid #2563eb;
}

.final-cta-box h3 {
    margin-top: 0;
    color: #1e40af;
}

/* Form Section */
.form-section {
    background-color: #f9fafb;
    padding: 4rem 0;
    margin-top: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group-checkbox {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.form-group-checkbox label {
    font-size: 0.9375rem;
    color: #4b5563;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Trust Footer */
.trust-footer {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f3f4f6;
    border-radius: 4px;
    text-align: center;
}

.trust-text {
    font-size: 1.0625rem;
    color: #4b5563;
    font-weight: 500;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background-color: #f9fafb;
    margin-bottom: 3rem;
}

/* About Content */
.about-content {
    padding: 2rem 0 4rem;
}

/* Services Content */
.services-content {
    padding: 2rem 0 4rem;
}

.services-faq {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: #1e40af;
    font-size: 1.125rem;
}

.faq-compact {
    margin-bottom: 2rem;
}

.faq-compact h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

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

/* Contact Content */
.contact-content {
    padding: 2rem 0 4rem;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.contact-detail p {
    margin-bottom: 0;
}

.contact-additional {
    margin-top: 3rem;
}

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

.thanks-box {
    text-align: center;
    padding: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.checkmark-circle {
    stroke: #10b981;
    stroke-width: 2;
}

.checkmark-check {
    stroke: #10b981;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thanks-lead {
    font-size: 1.125rem;
    color: #374151;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.service-confirmation {
    background-color: #eff6ff;
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem auto;
    max-width: 500px;
}

.service-selected {
    margin: 0;
    color: #1e40af;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.step-number {
    background-color: #2563eb;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.125rem;
}

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

.preparation-list {
    background-color: #f9fafb;
    padding: 1.5rem 1.5rem 0.25rem 2.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.note-text {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #f59e0b;
}

.thanks-navigation {
    margin: 3rem 0;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 4px;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.thanks-link {
    display: block;
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
}

.thanks-link:hover {
    background-color: #eff6ff;
    border-color: #2563eb;
    text-decoration: none;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

.last-updated {
    color: #6b7280;
    font-size: 0.9375rem;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookie-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #d1d5db;
}

.cookie-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

/* Site Footer */
.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9375rem;
    color: #9ca3af;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    font-size: 0.9375rem;
    text-decoration: none;
}

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

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

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

/* Mobile Responsive */
@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }

    h1 {
        font-size: 3rem;
    }

    .contact-split {
        flex-direction: row;
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 1rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text-overlay {
        padding: 1.5rem;
        margin-top: -2rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .cta-section-embedded {
        padding: 2rem 1.5rem;
    }
}