/* Start custom CSS for html, class: .elementor-element-5edcfec */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f2f8ff;
}

/* HERO */
.spoken-hero {
    background: linear-gradient(rgba(0,123,255,0.75), rgba(0,123,255,0.75)),
                url('spoken.jpg') center/cover no-repeat;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    animation: fadeIn 2s ease;
}

.hero-content h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

/* ABOUT */
.about-course {
    padding: 70px 15%;
    text-align: center;
}

.about-course h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #003366;
}

.about-course p {
    line-height: 1.7;
}

/* LEVELS */
.levels {
    padding: 70px 10%;
    text-align: center;
}

.levels h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: #003366;
}

.level-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.level-card {
    background: #fff;
    padding: 25px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    animation: slideUp 1.2s ease;
}

.level-card:hover {
    transform: translateY(-10px);
}

.level-card h3 {
    margin-bottom: 15px;
    color: #007bff;
}

.level-card ul li {
    margin-bottom: 10px;
    text-align: left;
}

/* FEATURES */
.features {
    padding: 70px 10%;
    text-align: center;
    background: #e6f2ff;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: #003366;
}

.feature-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* CTA */
.cta {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.btn.white {
    background: white;
    color: #007bff;
}

.btn.white:hover {
    background: #e6f2ff;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .level-container,
    .feature-container {
        flex-direction: column;
        align-items: center;
    }
}/* End custom CSS */