* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #16a085;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
    --border-color: #dfe6e9;
    --accent-color: #e17055;
    --dark-bg: #34495e;
    --white: #ffffff;
    --gray: #636e72;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 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;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--gray);
    background-color: var(--light-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.story-flow {
    width: 100%;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-narrative {
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 3rem;
    background-color: var(--light-bg);
}

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

.narrative-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.narrative-text h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.intro-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.story-section {
    margin-bottom: 4rem;
}

.story-section h2,
.insight-block h2,
.service-reveal h2,
.trust-section h2,
.cta-section h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.story-section p,
.insight-block p,
.service-reveal p,
.trust-section p,
.cta-section p {
    margin-bottom: 1.5rem;
}

.inline-image-wrapper {
    margin: 3rem 0;
    background-color: var(--light-bg);
}

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

.insight-block {
    margin-bottom: 4rem;
}

blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
}

blockquote sup a {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

sup a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

sup a:hover {
    text-decoration: underline;
}

.service-reveal {
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    border-left: 5px solid var(--secondary-color);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.select-service:hover {
    background-color: #138d75;
}

.trust-section {
    background-color: var(--light-bg);
    padding: 3rem 0;
    margin: 4rem 0;
}

.testimonial {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.testimonial:last-child {
    border-bottom: none;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: normal;
}

.cta-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.contact-form {
    max-width: 100%;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit,
.btn-primary {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-submit:hover,
.btn-primary:hover {
    background-color: #138d75;
}

.btn-secondary {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.disclaimer-section {
    background-color: var(--light-bg);
    padding: 2.5rem 0;
    margin: 4rem 0 0 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.disclaimer-text strong {
    color: var(--primary-color);
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b2bec3;
}

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

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

.footer-section ul li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #b2bec3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.references {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.references h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.references ol {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b2bec3;
    padding-left: 1.5rem;
}

.references ol li {
    margin-bottom: 0.5rem;
}

.references ol li a {
    color: var(--secondary-color);
    text-decoration: none;
}

.references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #138d75;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-header {
    margin: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.updated {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

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

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.philosophy-section,
.values-section,
.services-list,
.contact-info-section,
.process-section,
.faq-section,
.faq-contact,
.emergency-note {
    margin-bottom: 4rem;
}

.principle-block,
.value-item,
.contact-block,
.process-step,
.faq-item {
    margin: 2rem 0;
}

.principle-block h3,
.value-item h3,
.contact-block h2,
.process-step h3,
.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-block p {
    line-height: 1.8;
}

.note {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 1rem;
}

.alert-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.alert-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #856404;
}

.alert-box p {
    color: #856404;
    line-height: 1.7;
}

.alert-box ul {
    margin: 1rem 0 1rem 2rem;
    color: #856404;
    line-height: 1.8;
}

.alert-box ul li {
    margin-bottom: 0.5rem;
}

.service-detail-card {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-image {
    background-color: var(--light-bg);
}

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

.service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.price-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: var(--gray);
}

.price-value {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-section {
    margin: 4rem 0;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.next-steps {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-confirmation {
    background-color: #d4edda;
    border-left: 5px solid #28a745;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    color: #155724;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.additional-resources {
    margin: 3rem 0;
}

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

.resource-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #138d75;
    text-decoration: underline;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .narrative-text h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .story-section h2,
    .insight-block h2,
    .service-reveal h2,
    .trust-section h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    blockquote {
        font-size: 1.15rem;
        padding-left: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

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