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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    background-color: #fff;
    padding: 24px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-minimal .nav-brand {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-editorial {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.article-body {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.opening-section {
    margin-top: 20px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-block p {
    margin-bottom: 20px;
}

.inline-image {
    margin: 48px 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-cta {
    text-align: center;
    margin: 48px 0;
    padding: 32px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-link {
    font-size: 20px;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 32px;
    border: 2px solid #27ae60;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #27ae60;
    color: #fff;
}

.story-block {
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #27ae60;
    margin: 48px 0;
}

.story-block blockquote {
    border: none;
}

.story-block p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
}

.story-block cite {
    font-style: normal;
    color: #666;
    font-size: 16px;
}

.highlight-box {
    background-color: #fff3e0;
    padding: 36px;
    border-radius: 8px;
    margin: 48px 0;
}

.highlight-box h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.highlight-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.highlight-box strong {
    color: #e67e22;
}

.services-reveal {
    background-color: #f8f9fa;
    padding: 60px 40px;
    margin: 80px -40px;
    border-radius: 8px;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 48px;
    color: #555;
}

.service-card {
    background-color: #fff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card.featured {
    border: 2px solid #27ae60;
    background-color: #f0f9f4;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 14px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.testimonial-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.testimonial-section blockquote {
    background-color: #fff;
    padding: 32px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-section p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-section cite {
    font-style: normal;
    color: #666;
    font-size: 15px;
}

.urgency-block {
    background-color: #ffe6e6;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    margin: 48px 0;
}

.urgency-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #c0392b;
}

.urgency-block p {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.enrollment-section {
    background-color: #e8f5e9;
    padding: 60px 40px;
    margin: 80px -40px;
    border-radius: 8px;
}

.enrollment-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.enrollment-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.selected-service {
    background-color: #27ae60;
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 600;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.selected-service.show {
    display: block;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.closing-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.closing-section p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #95a5a6;
    font-size: 14px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #27ae60;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-minimal .nav-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .lead-text {
        font-size: 20px;
    }

    .content-block h2 {
        font-size: 26px;
    }

    .services-reveal {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

    .enrollment-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

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