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

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #34495e;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

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

.editorial-content {
    max-width: 100%;
    background-color: #fff;
}

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

.header-image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #34495e;
}

.header-overlay {
    text-align: center;
    color: #fff;
    padding: 2rem;
    background-color: rgba(0,0,0,0.45);
    max-width: 800px;
}

.header-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: normal;
}

.subtitle {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
}

.story-intro,
.problem-section,
.solution-reveal,
.testimonials-inline,
.courses-overview,
.how-it-works,
.final-cta,
.disclaimer {
    padding: 4rem 2rem;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.narrow-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.narrow-text h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    font-weight: normal;
    color: #2c3e50;
}

.narrow-text h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    font-weight: normal;
    color: #34495e;
}

.narrow-text h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
    object-fit: cover;
}

.quote-block {
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
}

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
}

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

.loss-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

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

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

.trust-item {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 6px;
}

.trust-item h4 {
    font-size: 1.5rem;
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #95a5a6;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    text-align: right;
    margin: 0;
}

.course-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.course-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
    color: #2c3e50;
}

.course-content p {
    margin-bottom: 1.2rem;
}

.course-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.course-includes li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.course-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.course-duration {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.course-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2980b9;
    margin: 1.5rem 0;
}

.cta-button {
    background-color: #2980b9;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-button:hover {
    background-color: #21618c;
}

.step-item {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.step-item h4 {
    margin-top: 0;
}

.form-container {
    background-color: #ecf0f1;
    padding: 3rem;
    border-radius: 6px;
    margin: 3rem 0;
}

.form-container h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.form-note {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.2rem;
    border-radius: 4px;
    color: #856404;
    text-align: center;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
}

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

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

.submit-button {
    background-color: #27ae60;
    color: #fff;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
    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: 0.6rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #fff;
}

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

.cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details strong {
    color: #2c3e50;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #21618c;
}

.contact-page,
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-page h1,
.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: normal;
}

.contact-page h2,
.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #34495e;
    font-weight: normal;
}

.contact-page h3,
.legal-page h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #34495e;
    font-weight: 600;
}

.contact-page p,
.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #444;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-info-item p {
    margin: 0.3rem 0;
    font-size: 1rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

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

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

    .header-overlay h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .story-intro,
    .problem-section,
    .solution-reveal,
    .testimonials-inline,
    .courses-overview,
    .how-it-works,
    .final-cta,
    .disclaimer {
        padding: 2.5rem 1.5rem;
    }

    .narrow-text h2 {
        font-size: 1.8rem;
    }

    .trust-indicators {
        gap: 1.5rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}