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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.2s;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.story-flow {
    background-color: #fff;
    padding: 0;
}

.story-header {
    margin-bottom: 3rem;
}

.header-image-wrapper {
    width: 100%;
    margin-bottom: 2rem;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.story-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1.3rem;
    color: #555;
    font-weight: 400;
    line-height: 1.5;
}

.page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

.story-content {
    padding: 0 2rem;
}

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

.opening-thought {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.story-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.inline-insight {
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 2.5rem 0;
}

.inline-insight h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    display: block;
    background-color: #e5e5e5;
    object-fit: cover;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #f4f7fa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.75rem;
}

.testimonial-inline cite {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.9rem;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.cta-inline {
    background-color: #f0f4f8;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-inline h3 {
    margin-top: 0;
    font-size: 1.6rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    border: 1px solid #ddd;
    padding: 2rem;
    background-color: #fff;
    position: relative;
}

.service-card.featured {
    border: 2px solid #0066cc;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #0066cc;
    color: #fff;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
}

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

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.select-service-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.select-service-btn:hover {
    background-color: #0052a3;
}

.form-section {
    background-color: #f9f9f9;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #e0e0e0;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
}

.submit-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #0052a3;
}

.science-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #f4f7fa;
    border-left: 3px solid #0066cc;
}

.science-section h3 {
    margin-top: 0;
}

.science-section a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

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

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #f0e0a0;
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer-box strong {
    color: #333;
}

.story-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.footer-references {
    margin-bottom: 2rem;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

.footer-references a {
    color: #0066cc;
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #0066cc;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #666;
    color: #fff;
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    background-color: #e5e5e5;
    object-fit: cover;
}

.service-info h2 {
    margin-top: 0;
    font-size: 2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1rem 0;
}

.popular-badge {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.featured-service {
    background-color: #f8fbff;
    padding: 2rem;
    border: 2px solid #0066cc;
}

.cta-button {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #0052a3;
}

.comparison-note {
    background-color: #f0f4f8;
    padding: 2rem;
    margin: 3rem 0;
}

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

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

.contact-block h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.legal-info {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content h2 {
    margin-top: 2.5rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

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

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

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

.cookies-table th {
    background-color: #f4f4f4;
    font-weight: 600;
}

.thanks-container {
    text-align: center;
    padding: 3rem 1.5rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #fff;
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.step {
    margin-bottom: 2.5rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.support-info {
    background-color: #fff9e6;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #f0e0a0;
    font-size: 0.95rem;
}

.back-button {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 2rem;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: #0052a3;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .story-title {
        font-size: 2rem;
    }

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

    .story-content {
        padding: 0 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}