/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #333333;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #E74C3C; /* Primary red color */
}

a {
  color: #E74C3C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Bar */
nav {
  background: #E74C3C; /* Red background */
  padding: 15px 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #FFFFFF; /* White text */
  font-weight: bold;
  font-size: 1rem;
}

nav ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
}

/* Header */
header {
  background: #E74C3C;
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #FFFFFF;
}

header p {
  font-size: 1.2rem;
  margin: 10px 0 0;
  color: #FFFFFF;
}

/* Sections */
section {
  padding: 40px 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

section h3 {
  font-size: 1.5rem;
  margin-top: 20px;
}

section p, section ul {
  font-size: 1rem;
  margin-bottom: 20px;
}

section ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Projects Section */
#projects {
  background: #F9F9F9;
  text-align: center;
}

#projects .button {
  display: inline-block;
  background: #E74C3C;
  color: #FFFFFF;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
}

#projects .button:hover {
  background: #C0392B;
}

/* Contact Section */
#contact .social-links {
  margin-top: 10px;
}

#contact .social-links a {
  margin-right: 15px;
  font-weight: bold;
}

/* Support Us Section */
#support {
  background: #F9F9F9;
  padding: 60px 0;
  text-align: center;
}

#support h2 {
  margin-bottom: 20px;
}

#support p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.volunteer-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.volunteer-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.volunteer-card h3 {
  color: #E74C3C;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.volunteer-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.volunteer-card .button {
  display: inline-block;
  background: #E74C3C;
  color: #FFFFFF;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
}

.volunteer-card .button:hover {
  background: #C0392B; /* Darker red on hover */
}

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

footer p {
  margin: 0;
  font-size: 0.9rem;
}
