/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text */
  line-height: 1.6;
}

a {
  color: #feb626; /* Yellow for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #fd6701; /* Orange on hover */
}

h2,
h3 {
  color: #fd6701; /* Orange headings */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Header */
header {
  background-color: #203671; /* Deep blue */
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

header .logo {
  display: block;
  margin: 0 auto;
  max-width: 150px;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

header nav a {
  color: #feb626;
  font-weight: bold;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #fd6701;
}

/* Sections */
.section {
  padding: 40px 20px;
  background-color: #1e1e1e; /* Dark grey for sections */
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.section h2 {
  text-align: center;
}

.section p,
.section li {
  color: #e0e0e0;
}

/* About Section Styles */
.contact-info {
  margin-top: 20px;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #feb626;
  text-decoration: none;
}

.contact-info a:hover {
  color: #fd6701;
  text-decoration: underline;
}

/* About Images */
.about-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.about-images img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

/* Activities */
.activities {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.activity {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.activity h3 {
  color: #00b24e; /* Green headings */
}

.activity img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 10px;
}

/* News Items */
.news-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.news-item {
  flex: 1 1 calc(50% - 20px);
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.news-item h3 {
  color: #00b24e;
}

.news-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
}

/* Donate Section */
.donate-list {
  list-style: disc;
  margin: 20px 0 0 20px;
}

.donate-list li {
  margin-bottom: 10px;
  color: #e0e0e0;
}

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

footer .social-links a {
  color: #feb626;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: #fd6701;
}

footer p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Stack activities and news items */
  .activity,
  .news-item {
    flex: 1 1 100%;
  }

  /* Stack about images vertically */
  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .about-images img {
    max-width: 90%;
    margin-bottom: 15px;
  }

  /* Adjust padding for smaller devices */
  .container {
    padding: 10px;
  }
}