/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #0056b3;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #004085 3px solid;
}

header h1 {
    float: left;
    display: inline;
    margin: 0;
}

header nav {
    float: right;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #f4f4f4;
    font-weight: bold;
}

/* Hero Section */
#hero {
    min-height: 400px;
    background: #007bff; /* Primary blue */
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    color: #fff;
    background: #28a745; /* Green for call to action */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #218838;
}

/* About Section */
#about {
    background: #fff;
    text-align: center;
}

#about h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

/* Programs Section */
#programs {
    background: #e9ecef;
    text-align: center;
}

#programs h3 {
    color: #0056b3;
    margin-bottom: 20px;
}

.program-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.program-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 30%;
    min-width: 280px;
    text-align: left;
}

.program-card h4 {
    color: #007bff;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}
