/* === HERO SECTION === */
.support-hero {
  background-color: #6ed674;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.support-hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.support-hero p {
  font-size: 1.2em;
  line-height: 1.6;
}

/* === SUPPORT SECTION (DONATE BUTTON) === */
.support-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.support-section h2 {
  font-size: 2em;
  color: #006400;
  margin-bottom: 20px;
}

/* === IMPACT SECTION === */
.impact-hero {
  background-color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.impact-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  gap: 60px;
}

.impact-image {
  width: 100%;
  max-width: 480px;
  height: 10cm;
  transform: skewX(-19deg);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  background-color: #000;
  transition: clip-path 0.5s ease, box-shadow 0.3s ease;
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.impact-text {
  transform: skewX(-20deg);
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.impact-text h3 {
  font-size: 2.8em;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.impact-text ul {
  list-style: none;
  padding: 0;
  font-size: 1.2em;
  line-height: 2;
  color: #333;
}

.impact-text ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.impact-text ul li i {
  margin-right: 12px;
  color: black;
  font-size: 1.2em;
}

/* === PAYMENT SECTION === */
.payment-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.payment-section h1,
.payment-section h2,
.payment-section h3 {
  color: #006400;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.method {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 400px;
  text-align: left;
}

.method h4 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333;
}

.method p {
  font-size: 1em;
  margin: 6px 0;
  color: #555;
}

.donate-btn {
  font-size: 1.2em;
  background-color: #fcee30;
  color: #111;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
}

.donate-btn:hover {
  background-color: #e6d600;
}

/* === VOLUNTEER SECTION === */
.volunteer-section {
  padding: 60px 20px;
  background-color: #fff;
}

.volunteer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.volunteer-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.volunteer-text h2 {
  font-size: 2em;
  color: #006400;
  margin-bottom: 10px;
}

.volunteer-text p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
}

.contact-list {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-list i {
  color: #006400;
  font-size: 1.2em;
}

.contact-list a {
  color: #006400;
  text-decoration: none;
  font-weight: bold;
}

.contact-list a:hover {
  text-decoration: underline;
}

.volunteer-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.volunteer-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* === OTHER SUPPORT OPTIONS === */
.other-support-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.other-support-section h2 {
  font-size: 2em;
  color: #006400;
  margin-bottom: 10px;
}

.other-support-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.other-support-section .btn {
  background-color: #6ed674;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.other-support-section .btn:hover {
  background-color: #5ac65f;
}

/* === LOGIN SECTION === */
.login-section {
  padding: 40px 20px;
  background-color: #fcee30;
  text-align: center;
  margin-bottom: 40px;
}

.login-section h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.login-link {
  font-size: 1.1em;
  color: black;
  text-decoration: underline;
}

/* === FOOTER === */
.footer {
  background-color: #333;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9em;
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-top img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.scroll-top.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.scroll-top:hover {
  transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .impact-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .impact-image {
    clip-path: none;
    transform: none;
    width: 100%;
    height: auto;
  }

  .impact-text {
    transform: none;
    text-align: center;
  }

  .impact-text h3 {
    font-size: 2em;
  }

  .impact-text ul li {
    justify-content: center;
  }

  .payment-methods {
    flex-direction: column;
    align-items: center;
  }

  .method {
    width: 100%;
    max-width: 90%;
  }

  .volunteer-content {
    flex-direction: column;
    text-align: center;
  }

    .volunteer-text {
    text-align: center;
  }

  .contact-list li {
    justify-content: center;
  }

  .volunteer-image {
    margin-top: 20px;
  }
}

/* === CONTACT BUTTON STYLE === */
.contact-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #6ed674;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* === Hover Animation === */
.contact-btn:hover {
  background-color: #5ac65f;
  transform: scale(1.05);
}

header {
  position: fixed;
  z-index: 1000;
}