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

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

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.navigation {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.story-content {
    background-color: #fff;
    padding: 48px 64px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.story-header {
    margin-bottom: 48px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

.story-section {
    margin: 48px 0;
}

.story-section h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 22px;
    line-height: 1.4;
    margin: 28px 0 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.story-section ul {
    margin: 20px 0 20px 32px;
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

.story-section li {
    margin-bottom: 12px;
}

.story-section a {
    color: #2c5aa0;
    text-decoration: underline;
}

.story-section a:hover {
    color: #1a3d6e;
}

.inline-image {
    margin: 48px 0;
    background-color: #f5f5f5;
}

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

.cta-inline {
    margin: 48px 0;
    text-align: center;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary {
    background-color: #2c5aa0;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a3d6e;
}

.btn-secondary {
    background-color: #fff;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    margin-left: 16px;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: #fff;
}

.btn-submit {
    background-color: #2c5aa0;
    color: #fff;
    width: 100%;
    margin-top: 8px;
}

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

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5aa0;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.course-selection {
    margin: 56px 0;
    padding: 48px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.course-selection h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.selection-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.course-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.course-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 28px;
    transition: all 0.3s;
}

.course-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #2c5aa0;
}

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

.course-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.course-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5aa0;
    margin: 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.course-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: #2c5aa0;
    margin: 24px 0;
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-course {
    width: 100%;
    padding: 12px 24px;
    background-color: #2c5aa0;
    color: #fff;
    border: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    font-weight: 500;
}

.select-course:hover {
    background-color: #1a3d6e;
}

.form-section {
    margin: 56px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border: 2px solid #2c5aa0;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section p {
    font-size: 16px;
    margin-bottom: 28px;
    color: #555;
}

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

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

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

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

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 56px 40px 24px;
}

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

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-section a {
    display: block;
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: #3a3a3a;
    border-left: 4px solid #2c5aa0;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #c0c0c0;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px 32px;
    box-shadow: 0 -2px 12px 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: 32px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #7fb3ff;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-cookie-accept {
    background-color: #2c5aa0;
    color: #fff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #3a3a3a;
}

@media (max-width: 768px) {
    .navigation {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-content {
        padding: 32px 24px;
    }

    .story-header h1 {
        font-size: 32px;
    }

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

    .story-section h2 {
        font-size: 24px;
    }

    .story-section p,
    .story-section ul {
        font-size: 16px;
    }

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

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
    }
}