/* 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: #2c3e50;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #22c55e;
    color: #fff;
}

.btn-accept:hover {
    background: #16a34a;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #64748b;
}

.btn-reject:hover {
    border-color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
}

/* Navigation - Minimal Style */
.nav-minimal {
    background: #fff;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Story Header */
.story-header {
    padding: 2rem 0 1.5rem;
}

.story-header h1 {
    font-size: 2.75rem;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
}

/* Story Blocks */
.story-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-block h2 {
    font-size: 1.95rem;
    line-height: 1.3;
    color: #1e293b;
    margin-top: 1rem;
    font-weight: 600;
}

.story-block h3 {
    font-size: 1.45rem;
    line-height: 1.4;
    color: #334155;
    margin-top: 0.75rem;
    font-weight: 600;
}

.story-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.story-block ul,
.story-block ol {
    padding-left: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-block li {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}

/* Highlight Section */
.highlight-section {
    background: #f8fafc;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    margin: 1rem 0;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inline-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.inline-image.small img {
    max-width: 500px;
    margin: 0 auto;
}

.inline-image figcaption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
}

/* Inline CTA */
.inline-cta {
    margin: 1.5rem 0;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.cta-link:hover {
    color: #1d4ed8;
    text-decoration-thickness: 3px;
}

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
}

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

.testimonial-inline p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    color: #475569;
    font-style: normal;
    font-weight: 600;
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.service-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(to bottom, #eff6ff, #fff);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.service-tag {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    background: #dbeafe;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    align-self: flex-start;
}

.service-card h3 {
    font-size: 1.65rem;
    color: #1e293b;
    margin: 0;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.duration {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #64748b;
}

.btn-select {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* CTA Section */
.cta-section {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-section.centered {
    align-items: center;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.75rem;
    color: #1e293b;
    margin: 0;
}

.cta-section p {
    font-size: 1.05rem;
    color: #475569;
    margin: 0;
}

.btn-primary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Principle List */
.principle-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.principle-list li {
    padding-left: 0.5rem;
}

.principle-list li strong {
    color: #1e293b;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 1rem 2rem;
    background: #dc2626;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #1e293b;
}

.modal-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #1e293b;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

/* Contact Page Specific */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0;
}

.contact-method p {
    font-size: 1.05rem;
    color: #475569;
    margin: 0;
}

.contact-link {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 600;
}

.contact-method address {
    font-style: normal;
    line-height: 1.8;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 0.5rem 0;
}

.note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

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

.faq-item h3 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

/* Thanks Page */
.thanks-page .service-selected {
    background: #dbeafe;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    color: #1e3a8a;
}

/* Legal Pages */
.legal-page h2 {
    margin-top: 2rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
}

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

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

.legal-page th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.legal-page td {
    color: #475569;
}

.cookie-table {
    margin: 1.5rem 0;
}

.cookie-table h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-section h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #cbd5e1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
}

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

    .cookie-content p {
        flex: 1;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .lead-text {
        font-size: 1.15rem;
    }

    .story-block h2 {
        font-size: 1.65rem;
    }

    .editorial-flow {
        padding: 2rem 1.5rem 3rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.75rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .story-block p,
    .story-block li {
        font-size: 1.05rem;
    }

    .testimonial-inline p {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.75rem;
    }
}