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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.header-minimal {
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.nav-minimal {
    display: flex;
    gap: 1.5rem;
}

.nav-minimal a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: #3498db;
}

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

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-editorial {
    position: relative;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    width: 100%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.hero-text-overlay {
    margin-top: 2rem;
}

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

.lead-text {
    font-size: 1.25rem;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.centered-text {
    text-align: left;
}

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

.opening-paragraph {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2c3e50;
}

.narrative-intro {
    margin: 2rem 0;
}

.inline-visual-section {
    margin: 3rem 0;
}

.text-image-merge {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-image-merge img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background-color: #ecf0f1;
    object-fit: cover;
}

.caption-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.caption-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.insight-reveal {
    padding: 2rem 0;
}

.insight-reveal h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.inline-cta {
    margin-top: 1.5rem;
}

.text-link-cta {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-link-cta:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.testimonial-embed {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.quote-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
}

.quote-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.method-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.method-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.method-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.visual-break {
    margin: 3rem 0;
    text-align: center;
}

.visual-break img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background-color: #ecf0f1;
    object-fit: cover;
}

.image-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.benefits-reveal h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-markers {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}

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

.cta-embedded {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-container-editorial {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-editorial h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.closing-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.6;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

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

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.page-hero-simple {
    margin-bottom: 3rem;
}

.page-hero-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-block.reverse {
    flex-direction: column;
}

.service-image {
    width: 100%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-features {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #34495e;
}

.enrollment-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

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

.contact-block h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.note-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-visual {
    width: 100%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-section {
    margin: 3rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.thanks-hero {
    margin-bottom: 3rem;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
    font-weight: 700;
}

.thanks-content {
    margin: 2rem 0;
}

.next-steps-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
    display: inline-block;
}

.next-steps-list li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

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

.legal-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #34495e;
}

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

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

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

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

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

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.principle-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.principle-card p {
    font-size: 1.05rem;
    color: #34495e;
}

.method-breakdown {
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-minimal {
        flex-wrap: wrap;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

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

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

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

    .editorial-layout {
        padding: 2rem 1.5rem;
    }
}