* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HERO */
.hero {
    height: 70vh;
    background: url('/image/Englishpage.webp') no-repeat center/cover;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .overlay h1 {
        font-size: 48px;
    }

    .overlay p {
        font-size: 20px;
        margin-top: 10px;
    }

/* CONTAINER */
.container {
    padding: 60px 10%;
}

.bg-light {
    background: #f5f5f5;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

ul {
    margin-left: 20px;
}

    ul li {
        margin-bottom: 8px;
    }

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}


/* COURSES HERO DIFFERENT IMAGE */
.courses-hero {
    background: url('/image/Free_courses.webp') no-repeat center/cover;
}

/* CTA */
.cta {
    background: #007BFF;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: white;
    color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}
