body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    background: linear-gradient(to right, #8e44ad, #3498db);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.course-section {
    padding: 40px 20px;
    text-align: center;
}

.course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.course-card {
    background: #f39c12;
    color: white;
    padding: 20px;
    border-radius: 8px;
    width: 150px;
    font-weight: bold;
    text-align: center;
}

.enquiry-form {
    background: #ecf0f1;
    padding: 30px;
    text-align: center;
}

.enquiry-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.enquiry-form input, .enquiry-form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
}

.enquiry-form button {
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
}
/* Layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}

.main-content {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.content-area {
    flex: 3;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sidebar {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

