h3 {
    margin-top: 20px;
    color: #333;
    font-weight: bold;
}
form {
    max-width: 700px;
    margin: auto;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
button {
    width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero-section {
    background-image: url('assets/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    color: white;
}

/* About Us Section */
.about-us-section img {
    border-radius: 8px;
}

.about-us-section ul {
    list-style: disc;
    padding-left: 20px;
}

.about-us-section ul li {
    margin-bottom: 10px;
}

/* Courses Section */
.courses-section .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.courses-section .card:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #001f3f;
    color: white;
}
