/* 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: #fefefe;
    overflow-x: hidden;
}

/* Navigation - Minimal Editorial Style */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

/* Editorial Content Container */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Editorial Hero */
.editorial-hero {
    padding: 4rem 0 3rem;
    background-color: #fafafa;
}

.hero-content-narrow {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.editorial-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

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

/* Editorial Sections */
.editorial-section {
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.editorial-section.section-dark {
    background-color: #f8f8f8;
}

.editorial-section.section-trust {
    background-color: #fafaf5;
}

.editorial-section.section-programs {
    background-color: #ffffff;
    padding: 5rem 0;
}

.editorial-section.form-section {
    background-color: #f5f5f5;
    padding: 5rem 0;
}

.editorial-section.section-final {
    background-color: #2a2a2a;
    color: #ffffff;
    border-bottom: none;
}

.editorial-section.section-final h2 {
    color: #ffffff;
}

.editorial-section.section-final p {
    color: #e0e0e0;
}

/* Content Narrow - Core Editorial Layout */
.content-narrow {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 2rem;
}

.opening-line {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
    color: #3a3a3a;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2a2a2a;
}

.content-narrow h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #3a3a3a;
}

.content-narrow ul, .content-narrow ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.content-narrow li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Blockquotes */
blockquote {
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #2a2a2a;
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #3a3a3a;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #6a6a6a;
}

/* Insight Boxes */
.insight-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fffef8;
    border: 1px solid #e8e4d0;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.insight-box p {
    margin-bottom: 0;
}

/* CTAs - Editorial Inline Style */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-inline {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: transparent;
    color: #2a2a2a;
    text-decoration: none;
    border: 2px solid #2a2a2a;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-inline:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #2a2a2a;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #000;
    border-color: #000;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #2a2a2a;
    border-radius: 3px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary-large:hover {
    background-color: #000;
    border-color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: #5a5a5a;
    text-decoration: none;
    border: 2px solid #c0c0c0;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-secondary:hover {
    border-color: #8a8a8a;
    color: #2a2a2a;
}

/* Method Preview */
.method-preview {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.method-preview h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.method-preview ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.method-preview li {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
}

.method-preview li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #5a5a5a;
}

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

.service-card {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
}

.service-card.featured {
    border: 2px solid #2a2a2a;
    background-color: #fafafa;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 3px;
    font-weight: 600;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
}

.service-ideal {
    font-style: italic;
    color: #5a5a5a;
    margin-top: 1.5rem;
}

.service-includes {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-includes span {
    display: block;
    padding: 0.6rem 0;
    border-left: 3px solid #e0e0e0;
    padding-left: 1rem;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-price {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.price-detail {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: -0.5rem;
}

.btn-select {
    padding: 0.9rem 1.8rem;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-select:hover {
    background-color: #000;
    transform: translateY(-1px);
}

.btn-select-link {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.btn-select-link:hover {
    background-color: #000;
    transform: translateY(-1px);
}

.services-note {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    text-align: center;
}

.services-note h3 {
    margin-top: 0;
}

/* Forms - Editorial Style */
.editorial-form {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: Georgia, serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.btn-submit:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.warning-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 3px;
    color: #856404;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.selected-service-display {
    margin-bottom: 2rem;
    padding: 1.2rem;
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Final CTA */
.final-cta {
    margin-top: 3rem;
    text-align: center;
}

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

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2a2a2a;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-cta {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.contact-cta h2 {
    margin-top: 0;
}

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

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.thanks-info {
    text-align: left;
    margin: 3rem 0;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2a2a2a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: #5a5a5a;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 4px;
    text-align: center;
}

.thanks-note {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
}

.thanks-note a {
    color: #856404;
    font-weight: 600;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta h3 {
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    background-color: #fafafa;
}

.legal-page .content-narrow {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section a {
    color: #2a2a2a;
    text-decoration: underline;
}

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

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    background-color: #f0f0f0;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Footer */
.footer-minimal {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

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

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

.footer-column p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #c0c0c0;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #8a8a8a;
    font-size: 0.9rem;
}

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

.btn-sticky {
    display: block;
    padding: 1rem 1.8rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-sticky:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

    .editorial-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .opening-line {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

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

    .btn-sticky {
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

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

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

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

    .logo {
        font-size: 1.1rem;
    }

    .editorial-hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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