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

html {
    font-size: 16px;
}

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

.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

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

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

.ad-disclosure {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #888;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.hero-editorial {
    margin-bottom: 3rem;
    text-align: left;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.page-header {
    margin-bottom: 2.5rem;
}

.page-header h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.last-updated {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.text-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.text-block h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: #3a3a3a;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.intro-section,
.content-section,
.insight-section,
.problem-section,
.story-section,
.education-section,
.benefits-section,
.cta-section,
.disclaimer-section,
.references-section {
    margin-bottom: 3rem;
}

.key-points {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.key-points li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.text-block ul {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-block ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.testimonial-inline {
    border-left: 4px solid #1a5f7a;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    color: #1a5f7a;
    text-decoration: none;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #134a5e;
    border-bottom-color: #134a5e;
}

.text-link {
    color: #1a5f7a;
    text-decoration: none;
    border-bottom: 1px solid #1a5f7a;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #134a5e;
    border-bottom-color: #134a5e;
}

.cta-inline-block {
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f7a;
    padding: 1.5rem;
    margin: 2rem 0;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-button-inline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-inline:hover {
    background-color: #134a5e;
}

.benefits-grid {
    margin-top: 2rem;
}

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

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

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.editorial-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5f7a;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #134a5e;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-style: italic;
}

.reference-list {
    margin-left: 1.5rem;
}

.reference-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.reference-list a {
    color: #1a5f7a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.reference-list a:hover {
    border-bottom-color: #1a5f7a;
}

.service-detail {
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-price {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.25rem;
}

.service-cta {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #134a5e;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #134a5e;
}

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

.step-item h3,
.value-item h3,
.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a5f7a;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-email {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #1a5f7a;
    margin: 1rem 0;
}

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

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: #3a3a3a;
    font-weight: 600;
}

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

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-position: outside;
}

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

.legal-section strong {
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.95rem;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-content {
    margin-bottom: 3rem;
}

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

.thanks-links a {
    color: #1a5f7a;
    text-decoration: none;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.thanks-links a:hover {
    color: #134a5e;
    border-bottom-color: #134a5e;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    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', 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    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 {
    flex: 1;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

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

.cookie-btn.accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .editorial-content {
        padding: 0 1.5rem;
        margin: 2rem auto;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 1.85rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

    .text-block h3 {
        font-size: 1.2rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}