/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-image: url('classroom-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact {
    color: white;
}

.hero {
    text-align: center;
    margin-bottom: 100px;
}

.hero h1 {
    font-size: 48px;
}

.cta-button {
    background-color: red;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: darkred;
}

/* About Section */
.about {
    display: flex;
    justify-content: space-around;
    padding: 50px;
}

.about-card {
    text-align: center;
    width: 30%;
}

.about-card h2 {
    color: red;
}

/* Mailing List Section */
.mailing-list {
    text-align: center;
    padding: 30px;
    background-color: #f8f8f8;
}

.mailing-list form {
    display: inline-block;
}

.mailing-list input {
    padding: 10px;
    margin-right: 10px;
    width: 250px;
}

.mailing-list button {
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
}

.mailing-list button:hover {
    background-color: darkred;
}

/* Social Section */
.social {
    text-align: center;
    padding: 30px;
}

.social-icons a {
    color: #333;
    margin: 0 10px;
    font-size: 24px;
}

.social-icons a:hover {
    color: red;
}

/* Donate Section */
.donate {
    text-align: center;
    padding: 50px;
    background-color: #f0f0f0;
}

.donate-button {
    background-color: red;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.donate-button:hover {
    background-color: darkred;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: red;
    text-decoration: none;
}
