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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8eef3;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c9a;
    background-color: #f7f9fb;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 15px;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2c5f8d;
}

.hero-section {
    position: relative;
    min-height: 520px;
}

.hero-image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.88) 0%, rgba(76, 142, 185, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 620px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f8d;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c5f8d;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.intro-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.intro-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f2937;
}

.intro-card p {
    color: #6b7280;
    line-height: 1.6;
}

.courses-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1f2937;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.course-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.course-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.course-content {
    padding: 28px;
}

.course-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1f2937;
}

.course-content p {
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.6;
}

.course-details {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.course-details span {
    font-size: 14px;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 6px 12px;
    border-radius: 4px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #4b5563;
    font-size: 15px;
}

.course-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.course-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 18px;
}

.btn-select {
    width: 100%;
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #1e4a6a;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f2937;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f8d;
    font-style: normal;
}

.enrollment-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.enrollment-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.enrollment-info {
    flex: 1;
    min-width: 320px;
}

.enrollment-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f2937;
}

.enrollment-info p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: #374151;
    font-size: 16px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 20px;
}

.enrollment-form-card {
    flex: 1;
    min-width: 380px;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.enrollment-form-card h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #1f2937;
}

.selected-service {
    background-color: #dbeafe;
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #2c5f8d;
}

.selected-service.hidden {
    display: none;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.why-section {
    padding: 90px 0;
    background-color: #f9fafb;
}

.why-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.why-image {
    flex: 1;
    min-width: 400px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: #e5e7eb;
}

.why-text {
    flex: 1;
    min-width: 380px;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1f2937;
}

.why-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #111827;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie.secondary {
    background-color: #6b7280;
}

.btn-cookie.secondary:hover {
    background-color: #4b5563;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #4c8eb9 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-main {
    padding: 90px 0;
    background-color: #ffffff;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 380px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1f2937;
}

.about-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-image-card {
    flex: 1;
    min-width: 400px;
}

.about-image-card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.methodology-section {
    padding: 90px 0;
    background-color: #f9fafb;
}

.methodology-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1f2937;
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.method-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.method-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c5f8d;
}

.method-card p {
    color: #4b5563;
    line-height: 1.6;
}

.mission-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.mission-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.mission-text {
    flex: 1;
    min-width: 380px;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1f2937;
}

.mission-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.7;
}

.mission-stats {
    flex: 1;
    min-width: 320px;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 10px;
}

.stat-item {
    margin-bottom: 32px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.team-section {
    padding: 90px 0;
    background-color: #f9fafb;
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #1f2937;
}

.team-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: #6b7280;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-card {
    flex: 1 1 calc(25% - 24px);
    min-width: 240px;
    text-align: center;
}

.team-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 16px;
    background-color: #e5e7eb;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #1f2937;
}

.team-card p {
    color: #6b7280;
    font-size: 15px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f8d 0%, #4c8eb9 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.services-main {
    padding: 60px 0 90px;
    background-color: #ffffff;
}

.contact-main {
    padding: 60px 0 90px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 380px;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1f2937;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f8d;
}

.contact-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-note {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 400px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    background-color: #e5e7eb;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 30px;
    border-radius: 0 0 10px 10px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.faq-section {
    padding: 90px 0;
    background-color: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1f2937;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1f2937;
}

.faq-card p {
    color: #4b5563;
    line-height: 1.6;
}

.legal-content {
    padding: 60px 0 90px;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2c5f8d;
}

.legal-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-text ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-text ul li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-text a {
    color: #2c5f8d;
    text-decoration: none;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-lead {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.thanks-details p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-message {
    margin-top: 16px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1f2937;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    text-align: left;
}

.step-card {
    flex: 1;
    min-width: 220px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5f8d;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1f2937;
}

.step-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.thanks-resources {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.thanks-resources h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1f2937;
}

.thanks-resources p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-support {
    font-size: 15px;
    color: #6b7280;
}

.thanks-support a {
    color: #2c5f8d;
    text-decoration: none;
}

.thanks-support a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .header-content {
        justify-content: center;
        gap: 15px;
    }

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

    .course-card {
        flex: 1 1 100%;
    }

    .method-card,
    .faq-card {
        flex: 1 1 100%;
    }

    .team-card {
        flex: 1 1 calc(50% - 16px);
    }
}