
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f7f9fb;
}
header {
    background: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}
.logo-section {
    display: flex;
    align-items: center;
}
.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 4px;
    margin-right: 15px;
}
.title h1 {
    margin: 0;
    font-size: 20px;
}
.tagline {
    color: #d32f2f;
    font-size: 14px;
}
nav a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.banner {
    background: #d32f2f;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}
main {
    padding: 20px;
}
.about {
    text-align: center;
    margin-bottom: 20px;
}
.courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    justify-items: center;
    margin-bottom: 30px;
}
.course-card {
    background: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 6px;
    font-weight: bold;
}
.scholarship {
    background: white;
    padding: 20px;
    border-left: 4px solid #d32f2f;
    margin-bottom: 30px;
    text-align: center;
}
.btn-register {
    display: inline-block;
    margin-top: 10px;
    background: #d32f2f;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}
.contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #2c3e50;
    color: white;
    padding: 20px;
    margin-bottom: 20px;
}
.map-placeholder {
    width: 100%;
    height: 150px;
    background: #ddd;
    margin-top: 15px;
}
.bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.call-btn, .whatsapp-btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.call-btn {
    background: #d32f2f;
    color: white;
}
.whatsapp-btn {
    background: #25d366;
    color: white;
}
footer {
    text-align: center;
    padding: 10px;
    background: #eee;
}
