* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: black;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Open Sans', sans-serif;
    background-colour: black;
}

a {
    text-decoration: none;
}

/* Header */
header {
    background-color: black;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .logo img {
    width: 500px;
    height: 250px
    
}

header nav ul {
    list-style-type: none;
    text-align: right;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    font-size: 1.1em;
    font-weight: 700;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: white ;
}

/* Hero Section */
#hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

#hero h1 {
    font-size: 4em;
}

#hero p {
    font-size: 1.5em;
    margin: 20px 0;
}

.cta-button {
    padding: 15px 30px;
    background-color: white;
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* About Section */
#about {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

#about p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto;
}

/* Programs Section */
#programs {
    background-color: #ecf0f1;
    padding: 60px 20px;
    text-align: center;
}

.programs-list {
    display: flex;
    justify-content: space-around;
}

.program {
    background-color: white;
    padding: 30px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.program h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* Testimonials Section */
#testimonials {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.testimonial {
    margin-bottom: 30px;
}

.testimonial p {
    font-size: 1.2em;
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

/* Contact Section */
#contact {
    background-color: #3498db;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
}

.submit-button {
    background-color: #2C3E50;
    color: white;
    padding: 12px 30px;
    font-size: 1.2em;
    border-radius: 8px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #34495E;
}

/* Footer */
footer {
    background-color: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .social-media {
    margin-top: 20px;
}

