/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
body p  a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}
body h3  a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}


.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #d10937;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
    width=100%;
}

header h1 {
    float: left;
    margin: 0;
    padding: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background: url('../images/pic.jpeg') no-repeat center center/cover;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    width=100%;
}

#hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#hero .btn {
    background: #AB7509;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* About Section */
#about {
    padding: 20px 0;
    background: #f72e5c;
    width=100%;
}

#about h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}
#about h3 {
    text-align: leftt;
    margin-bottom: 10px;
    color: #fff;
    font-size: 2.0em;
}


#about p {

    text-align: justify;
    font-size: 1.1em;
    color: #fff;
    justify-content: space-around;

}
#about ul li {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Courses Section */
#courses {
    padding: 20px 0;
    background: #d10937;
}

#courses h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.course-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width=100%;
}

.course {
    background: #4930FA;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    width: 20%;
    text-align: center;
    color:  #fff;
}

.course h3 {
    margin-bottom: 10px;
}

.course p {
    font-size: 1.2em;
text-decoration: bold;

}

/* Contact Section */
#contact {
    padding: 50px 0;
    background: #AB7509;
    width=100%;
}

#contact h2 {
    text-align: center;
    margin-bottom: 20px;
 color:  #fff;
}

#contact p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 20px;
 color:  #fff;
}

#contact form {
    max-width: 70% ;
    margin: auto;
    padding: 20px;
    background:  #f72e5c;
    border-radius: 5px;
}

#contact label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}

#contact input, #contact textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact .btn {
    background: #AB7509;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    background: #d10937;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

#user-query-status {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0.5rem;
}