body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000;
  line-height: 1.6;
}

header {
  background-color: #000;
  padding: 0.2rem 2rem;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.25rem 0;
}

.logo img {
  max-width: 120px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.menu-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  padding: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.menu-link:hover {
  color: #14ff30;
}

.menu-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #14ff30;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu-link:hover::after {
  width: 100%;
}

.donate-button {
  background-color: #14ff30;
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.donate-button:hover {
  background-color: #52c298;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger i {
  font-size: 1.5rem;
  color: #14ff30;
}

main {
  width: 100%;
}

section {
  padding: 4rem 2rem;
}

.hero {
  background-color: #000;
  padding: 6rem 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #fff;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #14ff30;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  text-align: center;
  min-width: 150px;
}

.cta-button:hover {
  background-color: #52c298;
}

.current-campaign {
  text-align: center;
}

.campaign-card-minimal {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.campaign-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.campaign-image-minimal {
  flex: 1 1 40%;
}

.campaign-image-minimal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-details-minimal {
  flex: 1 1 60%;
  padding: 2rem;
  text-align: center;
}

.campaign-details-minimal h3 {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
}

.campaign-description {
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #14ff30;
  border-radius: 5px;
  transition: width 1s ease-in-out;
}

.campaign-stats-minimal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mission,
.donate {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #000;
}

.donation-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.donation-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.donation-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.donation-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.donation-card p {
  font-weight: 700;
  font-size: 1.1rem;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem 2rem;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-section.about img {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #14ff30;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #000;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .campaign-card-minimal {
    flex-direction: column;
  }

  .donation-cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
