.donation-hero {
  background: #0787f8;
  min-height: 300px;
  padding: 135px 24px 80px;
  font-family: 'Inter', Arial, sans-serif;
  color: #ffffff;
}

.donation-hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  margin-bottom: 56px;
}

.eml-logo {
  width: 500px;
  max-width: 48%;
  height: auto;
}

.myriad-logo {
  width: 430px;
  max-width: 42%;
  height: auto;
}

.announcement {
  margin: 0 0 28px;
  font-size: 29px;
  line-height: 1.35;
  font-style: italic;
  color: #ffffff;
}

.announcement strong {
  font-weight: 800;
}

.announcement span {
  margin-left: 8px;
  font-weight: 400;
}

.donation-link {
  display: inline-block;
  width: min(900px, 100%);
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 38px;
  font-style: italic;
  line-height: 1.2;
  padding: 24px 46px;
  border-radius: 999px;
  box-sizing: border-box;
  margin-bottom: 44px;
}

.more-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 27px;
  font-style: italic;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.handle {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .donation-hero {
    padding-top: 80px;
    min-height: auto;
  }

  .logo-row {
    flex-direction: column;
    gap: 32px;
  }

  .eml-logo,
  .myriad-logo {
    max-width: 90%;
    width: 420px;
  }

  .announcement {
    font-size: 23px;
  }

  .announcement span {
    display: block;
    margin-left: 0;
  }

  .donation-link {
    font-size: 25px;
    padding: 20px 28px;
  }

  .more-info {
    flex-wrap: wrap;
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .donation-hero {
    padding: 56px 18px;
  }

  .donation-link {
    font-size: 19px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

/* Section wrapper */
.eml-donation {
  background-color: #eef3f6;
  padding: 80px 20px;
  font-family: 'Inter', Arial, sans-serif;
}

/* Container */
.eml-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Paragraph text */
.eml-intro {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* CTA box */
.eml-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* CTA button style */
.eml-cta a {
  display: inline-block;
  background-color: #e6e6e6;
  padding: 18px 40px;
  border-radius: 40px;
  text-decoration: none;
  color: #222;
  font-size: 20px;
  font-style: italic;
  transition: all 0.3s ease;
}

/* Hover effect */
.eml-cta a:hover {
  background-color: #d4d4d4;
  transform: translateY(-2px);
}

.eml-intro:first-of-type {
  margin-top: 20px;
}

.donation-accordion-section {
  background: #eaf8fc;
  padding: 58px 20px 72px;
  font-family: 'Inter', Arial, sans-serif;
}

.donation-accordion-card {
  max-width: 1240px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 40px;
  padding: 82px 86px;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.08);
}

.accordion-item {
  border-bottom: 2px solid #262626;
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 30px 8px 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 50;
  color: #111111;
  font-family: inherit;
}

.accordion-trigger span:first-child {
  max-width: calc(100% - 56px);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border: 3px solid #4a4a4a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #4a4a4a;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content p {
  margin: 0;
  padding: 4px 80px 28px 0;
  font-size: 19px;
  line-height: 1.25;
  font-style: italic;
  color: #3c3c3c;
}

.accordion-content a {
  color: #2587ff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .donation-accordion-card {
    padding: 52px 34px;
    border-radius: 28px;
  }

  .accordion-trigger {
    font-size: 24px;
  }

  .accordion-content p {
    font-size: 22px;
    padding-right: 0;
  }
}

@media (max-width: 520px) {
  .donation-accordion-section {
    padding: 36px 14px 48px;
  }

  .donation-accordion-card {
    padding: 36px 22px;
  }

  .accordion-trigger {
    font-size: 20px;
  }

  .accordion-content p {
    font-size: 18px;
  }
}