/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0d3a6b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-cookie-accept {
    background: #1a5490;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #0d3a6b;
}

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

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

/* Navigation */
.nav-minimal {
    background: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 18px;
    font-weight: bold;
    color: #2c2c2c;
}

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

.nav-links a {
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s;
}

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

/* Editorial Container */
.editorial-container {
    max-width: 100%;
    background: #fff;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.hero-image-inline {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Content Narrow */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-narrow h2 {
    font-size: 36px;
    margin: 50px 0 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.opening-graf {
    font-size: 24px !important;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 30px !important;
}

/* Inline Images */
.inline-image-medium,
.inline-image-wide {
    margin: 40px 0;
    border-radius: 4px;
    overflow: hidden;
}

.inline-image-wide {
    margin-left: -20px;
    margin-right: -20px;
}

/* CTA Inline */
.cta-inline {
    margin: 35px 0;
    text-align: center;
}

.link-arrow {
    font-size: 18px;
    color: #1a5490;
    font-weight: 600;
    display: inline-block;
    padding: 12px 0;
    border-bottom: 2px solid #1a5490;
}

.link-arrow:hover {
    border-bottom-color: #0d3a6b;
}

/* Testimonials */
.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #1a5490;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

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

/* Insight Box */
.insight-box {
    background: #fffbea;
    border: 1px solid #f0e68c;
    padding: 25px;
    margin: 35px 0;
    border-radius: 4px;
}

.insight-box p {
    margin: 0;
    font-size: 18px;
}

/* Stats Inline */
.stats-inline {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #1a5490;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Editorial */
.services-editorial {
    background: #f5f5f5;
    padding: 80px 20px;
}

.course-cards {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.course-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-card.featured {
    border: 2px solid #1a5490;
}

.course-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1a5490;
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

.course-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.course-duration,
.course-level {
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    color: #555;
}

.course-price {
    font-size: 32px;
    font-weight: bold;
    color: #1a5490;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #1a5490;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.btn-select-service:hover {
    background: #0d3a6b;
}

/* CTA Section Editorial */
.cta-section-editorial {
    background: #1a5490;
    color: #fff;
    padding: 50px 40px;
    margin: 60px 0;
    border-radius: 8px;
    text-align: center;
}

.cta-section-editorial h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section-editorial p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-primary-large {
    display: inline-block;
    background: #fff;
    color: #1a5490;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Form Section Editorial */
.form-section-editorial {
    background: #f9f9f9;
    padding: 80px 20px;
}

.editorial-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #1a5490;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #0d3a6b;
}

/* Final Section */
.final-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 60px !important;
}

/* Footer */
.footer-minimal {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a5490;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta span {
    font-size: 15px;
    font-weight: 600;
}

.btn-sticky {
    background: #fff;
    color: #1a5490;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

    .content-narrow h2 {
        font-size: 28px;
    }

    .content-narrow p {
        font-size: 17px;
    }

    .opening-graf {
        font-size: 20px !important;
    }

    .stats-inline {
        flex-direction: column;
        gap: 25px;
    }

    .course-cards {
        flex-direction: column;
        align-items: center;
    }

    .course-card {
        max-width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 16px;
        justify-content: center;
    }

    .sticky-cta span {
        font-size: 13px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Simple Page Styles */
.simple-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.simple-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.simple-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c2c2c;
}

.simple-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

.simple-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.simple-page ul,
.simple-page ol {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.7;
}

.simple-page li {
    margin-bottom: 10px;
}

.contact-info {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #1a5490;
}

/* Thanks Page */
.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a5490;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    background: #1a5490;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container .btn-home:hover {
    background: #0d3a6b;
}