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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.hero {
    background-image: linear-gradient(rgba(44, 82, 130, 0.85), rgba(44, 82, 130, 0.85)), url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 60px 0;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5282;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #2c5282;
    cursor: pointer;
}

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

.intro-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 24px;
    color: #2c5282;
    margin-bottom: 15px;
}

.card-body p {
    color: #4a5568;
    line-height: 1.7;
}

.courses-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.courses-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5282;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 50px;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.course-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.course-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.course-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.price {
    font-size: 32px;
    font-weight: 700;
}

.course-details {
    padding: 32px;
}

.course-details p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.course-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #2d3748;
}

.course-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 18px;
}

.btn-select-service {
    width: 100%;
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.enrollment-form-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    color: #2c5282;
    margin-bottom: 10px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #718096;
    margin-bottom: 35px;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f7fafc;
    color: #2c5282;
    font-weight: 600;
}

.btn-submit {
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5282;
    margin-bottom: 50px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    padding: 35px 25px;
    background-color: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: #2c5282;
    margin-bottom: 12px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

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

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

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.email-text {
    color: #cbd5e0;
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 25px;
    text-align: center;
}

.disclaimer {
    color: #a0aec0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #e2e8f0;
    color: #2d3748;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.card-image-left,
.card-image-right {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image-left img,
.card-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-text-right,
.card-text-left {
    flex: 1;
    min-width: 300px;
}

.card-text-right h2,
.card-text-left h2 {
    font-size: 36px;
    color: #2c5282;
    margin-bottom: 20px;
}

.card-text-right p,
.card-text-left p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.team-section {
    margin-top: 80px;
    padding: 60px 0;
    background-color: #f7fafc;
    border-radius: 12px;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5282;
    margin-bottom: 15px;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    margin-top: 50px;
}

.team-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 22px;
    color: #2c5282;
    margin-bottom: 5px;
}

.role {
    color: #718096;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.team-info p {
    color: #4a5568;
    line-height: 1.7;
}

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5282;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.value-item h3 {
    font-size: 24px;
    color: #2c5282;
    margin-bottom: 12px;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    flex-wrap: wrap;
    gap: 20px;
}

.service-title-block h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.service-tagline {
    font-size: 15px;
    opacity: 0.9;
}

.service-price-block {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
}

.service-body {
    padding: 40px;
}

.service-image-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-description h3 {
    font-size: 24px;
    color: #2c5282;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-description p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-description ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-description ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #2d3748;
}

.service-description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 24px;
    line-height: 1;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
}

.contact-info-card h2 {
    font-size: 32px;
    color: #2c5282;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.location-card {
    flex: 1;
    min-width: 300px;
    background-color: #f7fafc;
    padding: 35px;
    border-radius: 12px;
}

.location-card h2 {
    font-size: 32px;
    color: #2c5282;
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 20px;
    color: #2c5282;
    margin-top: 25px;
    margin-bottom: 12px;
}

.location-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 18px;
}

.location-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.location-card ul li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    color: #2d3748;
}

.location-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
}

.faq-section {
    margin-top: 60px;
    padding: 60px 0;
    background-color: #f7fafc;
    border-radius: 12px;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 60px 45px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-card h1 {
    font-size: 38px;
    color: #2c5282;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    color: #4a5568;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    color: #2c5282;
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.step-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 240px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #667eea;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item h3 {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 8px;
}

.step-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 42px;
    color: #2c5282;
    margin-bottom: 10px;
}

.last-updated {
    color: #718096;
    font-size: 14px;
    margin-bottom: 35px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c5282;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c5282;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

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

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

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

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .card-grid,
    .course-cards,
    .feature-cards,
    .team-cards,
    .values-grid,
    .faq-grid,
    .steps-grid,
    .contact-grid {
        flex-direction: column;
    }

    .content-card,
    .content-card.reverse {
        flex-direction: column;
    }

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

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

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-price-block {
        text-align: center;
    }
}
