:root {
  --green: #159447;
  --green-dark: #0b6b34;
  --green-soft: #eaf7ef;
  --purple: #6b3fa0;
  --purple-dark: #4d287d;
  --purple-soft: #f1ecf8;
  --gold: #d7a83f;
  --dark: #17212b;
  --muted: #69717c;
  --light: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 33, 43, 0.1);
  --shadow-soft: 0 10px 26px rgba(23, 33, 43, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(21, 148, 71, 0.06), transparent 28rem),
    var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body:not(.page-ready) {
  opacity: 0;
}

body.page-ready {
  animation: pageFadeIn 0.55s ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
  z-index: 1030;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.09);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 148, 71, 0.34), rgba(107, 63, 160, 0.28), transparent);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0;
}

.brand-logo {
  width: 62px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text span:last-child {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-link {
  position: relative;
  color: var(--dark);
  font-weight: 600;
  margin: 0 5px;
  padding: 10px 11px !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--purple));
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
}

.btn:hover::before {
  transform: translateX(140%);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary-brand {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
}

.btn-primary-brand:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn-secondary-brand {
  background: var(--purple);
  border: 1px solid var(--purple);
  color: var(--white);
}

.btn-secondary-brand:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: var(--white);
}

.btn-outline-brand {
  background: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
}

.btn-outline-brand:hover {
  background: var(--purple);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 58, 31, 0.88), rgba(39, 16, 68, 0.64)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
}

.hero-modern {
  padding-top: 96px;
}

.hero-modern::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
  opacity: 0.2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.95;
  font-weight: 900;
  max-width: 900px;
  margin-bottom: 18px;
}

.hero h1 span {
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.hero h2 {
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 700;
  color: #eaf7ef;
  margin-bottom: 18px;
}

.hero p {
  max-width: 720px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-trust-row div {
  min-width: 145px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-trust-row strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-trust-row span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

.hero-photo-stack {
  position: relative;
  min-height: 560px;
}

.hero-photo-main,
.hero-photo-small {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.hero-photo-main {
  width: 78%;
  height: 430px;
  right: 0;
  top: 62px;
  border-radius: 26px 8px 26px 8px;
  animation: floatImage 7s ease-in-out infinite;
}

.hero-photo-small {
  width: 210px;
  height: 160px;
  border-radius: 8px 22px 8px 22px;
}

.hero-photo-one {
  left: 0;
  top: 0;
  animation: floatImage 8s ease-in-out infinite reverse;
}

.hero-photo-two {
  left: 24px;
  bottom: 18px;
  animation: floatImage 7.5s ease-in-out infinite;
}

.hero-floating-card {
  position: absolute;
  right: 24px;
  bottom: 40px;
  width: 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.hero-floating-card span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--purple));
}

.hero-floating-card strong,
.hero-floating-card small {
  display: block;
}

.hero-floating-card small {
  color: var(--muted);
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.section-padding {
  padding: 96px 0;
}

.section-heading-left {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.04;
  margin: 0;
}

.section-soft {
  background: var(--light);
}

.section-green-soft {
  background: linear-gradient(180deg, #f4fbf7, #ffffff);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title h1,
.section-title h2 {
  font-weight: 850;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-title p {
  color: var(--muted);
  margin: 0;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: 160px 0 80px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 58, 31, 0.88), rgba(73, 37, 112, 0.76));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.info-card,
.program-card,
.payment-card,
.value-card,
.stat-card,
.faq-item,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(23, 33, 43, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-card,
.program-card,
.payment-card,
.value-card,
.stat-card,
.contact-card {
  height: 100%;
  padding: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before,
.program-card::before,
.payment-card::before,
.value-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--purple), var(--gold));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.info-card:hover,
.program-card:hover,
.payment-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 148, 71, 0.22);
}

.info-card:hover::before,
.program-card:hover::before,
.payment-card:hover::before,
.value-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--purple));
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.image-rounded {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.image-rounded img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.image-rounded:hover img {
  transform: scale(1.045);
}

.quick-donate-strip {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.quick-donate-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 148, 71, 0.12);
}

.quick-donate-inner h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 900;
  margin: 0;
}

.quick-number {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-soft), var(--purple-soft));
}

.quick-number span {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
}

.quick-number strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.quick-number .copy-number {
  justify-self: start;
  min-width: auto;
  padding: 7px 13px;
}

.media-showcase {
  position: relative;
  overflow: hidden;
}

.video-feature-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
}

.video-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.55s ease;
}

.video-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 58, 31, 0.05), rgba(10, 16, 24, 0.82));
}

.video-feature-card:hover img {
  transform: scale(1.05);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.14), var(--shadow);
  transform: translate(-50%, -50%);
  animation: pulsePlay 2.1s ease-in-out infinite;
}

@keyframes pulsePlay {
  0%,
  100% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.12), var(--shadow);
  }

  50% {
    box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.06), var(--shadow);
  }
}

.video-feature-content {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: var(--white);
}

.video-feature-content span,
.story-card span {
  color: #dff5e8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-feature-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
}

.video-feature-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.story-grid {
  display: grid;
  gap: 18px;
  height: 100%;
}

.story-card {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.story-card img {
  width: 148px;
  height: 124px;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-card span {
  color: var(--purple);
}

.story-card h3 {
  font-size: 1.05rem;
  font-weight: 850;
  margin: 5px 0 0;
}

.visual-slider-section {
  overflow: hidden;
  background: var(--white);
}

.impact-swiper {
  padding: 10px 0 18px;
}

.impact-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.impact-swiper .swiper-slide {
  width: 360px;
  height: 255px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.impact-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.impact-swiper .swiper-slide:hover img {
  transform: scale(1.06);
}

.video-modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #101820;
  color: var(--white);
}

.video-modal-content .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.video-placeholder {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: 520px;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.video-placeholder div {
  padding: 42px;
}

.video-placeholder h2 {
  font-weight: 900;
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.76);
}

.donation-band {
  background:
    linear-gradient(135deg, rgba(21, 148, 71, 0.95), rgba(107, 63, 160, 0.94)),
    url("../../assets/images/optimized/IMG_9226.jpg") center/cover;
  color: var(--white);
}

.donation-band .section-title h2,
.donation-band .section-title p {
  color: var(--white);
}

.payment-card .payment-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.payment-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-top: 10px;
  font-weight: 800;
  color: var(--green-dark);
}

.copy-number {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
  min-width: 96px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--green-dark);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  background: var(--light);
  isolation: isolate;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.65));
  opacity: 0.88;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(7, 58, 31, 0.92), rgba(73, 37, 112, 0.88)),
    url("../../assets/images/optimized/IMG_9340.jpg") center/cover;
  color: var(--white);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
}

.program-feature {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.program-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.program-feature-body {
  padding: 28px;
}

.process-step {
  position: relative;
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.step-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 15px;
}

.faq-item {
  padding: 24px 26px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-form .form-control {
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: var(--radius);
  padding: 13px 15px;
  min-height: 52px;
}

.contact-form .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(21, 148, 71, 0.14);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(17, 26, 34, 0.98), rgba(25, 18, 45, 0.98)),
    url("../../assets/images/optimized/IMG_9226.jpg") center/cover;
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 22px;
}

.footer-logo {
  width: 78px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: 5px;
  margin-bottom: 18px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 1040;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 13, 18, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: var(--white);
  color: var(--dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 18px 0 8px;
  }

  .nav-link {
    margin: 2px 0;
  }

  .hero {
    min-height: 650px;
  }

  .quick-donate-strip {
    margin-top: 0;
    background: var(--white);
  }

  .quick-donate-inner {
    grid-template-columns: 1fr;
    border-radius: 0;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
  }

  .video-feature-card,
  .video-feature-card img {
    min-height: 430px;
  }

  .video-placeholder {
    grid-template-columns: 1fr;
  }

  .video-placeholder img {
    min-height: 300px;
  }

  .section-padding {
    padding: 72px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall {
    grid-row: span 1;
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  [data-aos] {
    transform: none !important;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .brand-logo {
    width: 52px;
    height: 40px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 98px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 3.08rem;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero h2 {
    font-size: 1.45rem;
    line-height: 1.25;
    max-width: 340px;
  }

  .hero p {
    font-size: 1rem;
    max-width: 340px;
  }

  .hero-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-trust-row div {
    min-width: 0;
  }

  .quick-donate-inner {
    padding: 24px 12px;
  }

  .quick-number {
    padding: 14px;
  }

  .section-heading-left {
    font-size: 2rem;
  }

  .video-feature-card,
  .video-feature-card img {
    min-height: 380px;
  }

  .video-feature-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .video-play-button {
    width: 68px;
    height: 68px;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card img {
    width: 100%;
    height: 190px;
  }

  .impact-swiper .swiper-slide {
    width: 280px;
    height: 210px;
  }

  .video-placeholder div {
    padding: 28px 22px;
  }

  .section-title h1,
  .section-title h2,
  .page-hero h1 {
    overflow-wrap: break-word;
  }

  .section-title h2 {
    font-size: 1.75rem;
    line-height: 1.18;
  }

  .btn {
    width: 100%;
    margin-bottom: 8px;
  }

  .payment-number {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-number {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall {
    min-height: 280px;
  }

  .page-hero {
    min-height: 360px;
    padding: 135px 0 58px;
  }

  .footer-bottom {
    display: block;
  }
}
