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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #1a1a1a;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    max-width: 720px;
    margin: -180px auto 0;
    position: relative;
    background-color: #fff;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.intro-section,
.story-section,
.insight-section,
.process-section,
.benefit-section,
.reality-section,
.science-section,
.final-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 50px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2c2c2c;
}

.content-narrow h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.inline-image-block {
    margin: 50px 0;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e5e5e5;
}

.image-caption {
    font-size: 0.9rem;
    color: #777;
    margin-top: 12px;
    font-style: italic;
}

.cta-inline {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 50px 0;
    border-left: 4px solid #2563eb;
}

.cta-link {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #2563eb;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #1d4ed8;
}

.citation-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.editorial-list {
    margin: 30px 0;
    padding-left: 30px;
}

.editorial-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-block {
    background-color: #f9f9f9;
    padding: 40px 35px;
    margin: 60px 0;
    border-left: 5px solid #1a1a1a;
}

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

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
}

.cta-block-mid {
    background-color: #2563eb;
    color: #fff;
    padding: 50px 40px;
    text-align: center;
    margin: 70px 0;
}

.cta-block-mid h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.cta-block-mid p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #2563eb;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

.services-preview {
    margin-top: 70px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2563eb;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.form-section {
    background-color: #f5f5f5;
    padding: 50px 40px;
    margin: 50px 0;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 25px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

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

.btn-submit {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references-list {
    padding-left: 20px;
    font-size: 0.85rem;
}

.references-list li {
    margin-bottom: 10px;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: #252525;
    border-left: 3px solid #2563eb;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #2563eb;
    color: #fff;
}

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

.btn-cookie-alt {
    background-color: #444;
    color: #fff;
}

.btn-cookie-alt:hover {
    background-color: #555;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    margin-bottom: 10px;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 10px 15px;
    display: inline-block;
    color: #2c2c2c;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2563eb;
}

.thanks-container {
    text-align: center;
    padding: 80px 30px;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.submission-info {
    background-color: #f5f5f5;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #2563eb;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: #f5f5f5;
    color: #2563eb;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #2563eb;
    transition: background-color 0.3s;
}

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.legal-section h3 {
    color: #2563eb;
}

.service-detail-card {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid #e0e0e0;
}

.service-detail-card h2 {
    margin-top: 0;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-text {
        margin: -100px 20px 0;
        padding: 35px 30px;
    }

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

    .content-narrow {
        padding: 30px 20px 60px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}