.transforming-lives {
  background: url('assets/img/parchment-bg.jpg') center center / cover no-repeat;
  padding: 60px 0;
  text-align: center;
  color: #333;
}

.transforming-lives h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
}

.transforming-lives .stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.transforming-lives .stat-item {
  text-align: center;
}

.transforming-lives .stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #1abc9c;
  margin-bottom: 10px;
}

.transforming-lives .stat-item p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.transforming-lives .description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.support-us {
  background-color: #e6f4fa;
  padding: 60px 0;
  text-align: center;
}

.support-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8e44ad;
  margin-bottom: 20px;
}

.support-us .description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-us .support-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.support-us .support-card:hover {
  transform: translateY(-5px);
}

.support-us .support-card i {
  font-size: 2rem;
  color: #1abc9c;
  margin-bottom: 15px;
}

.support-us .support-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.support-us .support-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.support-us .support-card a {
  color: #1abc9c;
  font-weight: 600;
  text-decoration: none;
}

.support-us .support-card a:hover {
  text-decoration: underline;
}

.cta-banner {
  position: relative;
  background: url('assets/img/cta-bg.jpg') center center / cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner .small-text {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.cta-banner .btn-donate {
  background-color: #1abc9c;
  color: #fff;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.cta-banner .btn-donate:hover {
  background-color: #16a085;
}

.education-need {
  background-color: #f0faff;
  padding: 60px 0;
}

.education-need h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.education-need h2::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #1abc9c;
}

.education-need p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 800px;
}

.education-need .btn-sponsor {
  background-color: #5e2d79;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.education-need .btn-sponsor:hover {
  background-color: #4b2366;
}

.donate-section {
  background-color: #f0faff;
  padding: 60px 0;
  text-align: center;
}

.donate-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #5e2d79;
  margin-bottom: 20px;
  position: relative;
}

.donate-section h2::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #1abc9c;
}

.donate-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.donate-section .donation-options .donation-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.donate-section .donation-options .donation-title {
  font-size: 1.1rem;
  color: #5e2d79;
  cursor: pointer;
  padding: 10px;
}

.donate-section .donation-options .donation-details {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  color: #333;
}

.donate-section .donation-options .donation-details li {
  padding: 10px;
  background: #f9f9f9;
  border-radius: 5px;
}

.donate-section .donation-options .small-text {
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
}