:root {
  --red: #df3f2b;
  --gray: #808080;
  --light-gray: #9c9c9c;
  --white: #ffffff;
  --dark-gray: #262f36;
  --yellow: #dd931d;
  --green: #047724;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.preheader {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray);
  padding: 5px 50px 0;
}

.reach-us {
  font-size: 0.9rem;
  font-weight: 500;
  font-style: normal;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links a {
  margin: 0;
  padding: 0 10px;
  display: inline-block;
  border-right: 1px solid var(--gray);
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  color: var(--dark-gray);
}

.social-links a:first-child {
  border-left: 1px solid var(--gray); /* Add left border to the first link */
}

.header-brand-contact,
.col-brand {
  display: flex;
  justify-content: space-between;
}

.header-brand-contact {
  margin: 0.5rem 2rem;
}

.logo,
.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  margin: 0 5px;
}

.brand-name p {
  margin: 0;
}

.logo img {
  width: 65px;
  height: 55px;
}

.org-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.sub-name {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--red);
}

.col-email,
.col-phone {
  display: flex;
  align-items: center;
}

.col-email {
  margin-left: 200px;
}

.email-icon,
.phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
}

.email-content span,
.phone-content span {
  font-weight: 700;
  font-size: 0.9rem;
}

.email-content a,
.phone-content span:last-child {
  margin: 0;
  font-weight: 300;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--dark-gray);
}

.email-icon a,
.phone-icon a {
  text-decoration: none;
  color: var(--white);
}

.col-donate {
  display: flex;
  align-items: center;
}

.donate-button {
  text-decoration: none;
  padding: 10px 20px;
  background-color: var(--red);
  color: white;
  border-radius: 25px;
  font-weight: bold;
}

.donate-button:hover {
  background-color: #e67e22; /* Hover background color */
  border-color: #d35400; /* Hover border color */
}

header {
  width: 100%;
  min-height: 65px;
  background: var(--dark-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--red);
}

header ul {
  position: relative;
}

header ul li {
  position: relative;
  list-style: none;
  float: left;
}

header ul li a {
  color: #fff;
  font-size: 1.1em;
  padding: 20px 25px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

header ul li a:hover {
  background: var(--red);
}

header ul li ul {
  position: absolute;
  left: 0;
  width: 300px;
  background: #4d4d4d;
  display: none;
  z-index: 9999;
}

header ul li:hover > ul {
  display: block;
}

header ul li ul li {
  position: relative;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.carousel {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.banner1,
.banner2,
.banner3,
.banner4 {
  position: absolute;
  width: 100%;
  height: 85vh;
  opacity: 0; /* Initially hide all banners */
  animation-duration: 15s; /* Total duration of the carousel */
  animation-timing-function: ease-in-out; /* Smooth transitions */
  animation-iteration-count: infinite; /* Infinite loop */
}

.banner1 img,
.banner2 img,
.banner3 img,
.banner4 img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner1 {
  animation-name: fadeInOut1;
}

.banner2 {
  animation-name: fadeInOut2;
}

.banner3 {
  animation-name: fadeInOut3;
}

.banner4 {
  animation-name: fadeInOut4;
}

@keyframes fadeInOut1 {
  0%,
  20% {
    opacity: 1;
  }
  25%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut2 {
  0%,
  25% {
    opacity: 0;
  }
  30%,
  50% {
    opacity: 1;
  }
  55%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut3 {
  0%,
  50% {
    opacity: 0;
  }
  55%,
  75% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut4 {
  0%,
  75% {
    opacity: 0;
  }
  80%,
  100% {
    opacity: 1;
  }
}

.text-box {
  position: absolute;
  width: 600px;
  top: 200px;
  left: 50px;
  color: #fff;
}

.text-box h1 {
  background: linear-gradient(
    to right,
    rgba(223, 63, 43, 0),
    rgba(223, 63, 43, 1),
    rgba(223, 63, 43, 0)
  );
  text-align: center;
  margin-bottom: 5px;
}

.text-box p {
  font-size: 14px;
  line-height: 18px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 10px;
}

.what-we-do {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  margin: 10px;
}

.wwd-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.wwd-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.wwd-col i {
  font-size: 45px;
  margin: 20px;
  border: 2px solid var(--dark-gray);
  border-radius: 50%;
  padding: 15px;
  color: var(--dark-gray);
}

.wwd-col p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}

.btn-wwd {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  background-color: var(--dark-gray);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-wwd:hover {
  background-color: var(--red); /* Darker gray on hover */
}

.key-achivements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--dark-gray);
  color: var(--white);
  padding: 20px 0;
}

.ka-content {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 25px 0;
}

.ka-res {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  text-align: center;
}

.ka-res span:nth-child(1) {
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
}

.ka-res span:nth-child(2) {
  height: 2px;
  width: 200px;
  background: var(--white);
}

.ka-res p {
  font-size: 13px;
  margin-top: 10px;
  line-height: 18px;
  font-weight: 300;
}

.news-events {
  display: flex;
  margin: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news-strip {
  height: 3px;
  width: 200px;
  background-color: var(--red);
}

.content {
  width: 90%;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.news-content {
  display: flex;
  justify-content: flex-start;
}

.news-content a {
  text-decoration: none;
}

.news-image {
  width: 200px;
}

.news-image img {
  width: 100%;
  object-fit: cover;
}

.newsdetails {
  width: 340px;
  margin-left: 10px;
}

.newsdetails h4 {
  font-size: 18px;
  color: var(--red);
  font-weight: 600;
}

.newsdetails p {
  font-size: 13.5px;
  font-weight: 300;
}

footer {
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  background: var(--red);
  padding: 10px 20px;
}

.footer-links div {
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider {
  width: 1px;
  height: 230px;
  margin: 10px 0;
  background-color: black;
}

.useful-links ul {
  list-style: none;
  margin-top: 10px;
}

.useful-links ul li {
  margin: 8px 0;
  border-bottom: 1px #000 solid;
}

.useful-links ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
}

.reach-us-at div {
  margin: 10px 0;
}

.reach-us-at div p {
  font-size: 14px;
  text-align: center;
}

.send-query form {
  display: flex;
  flex-direction: column;
  margin: 10px 0 0;
  width: 300px;
}

.send-query form input,
.send-query form textarea {
  margin: 0 0 5px;
  padding: 5px;
  background: var(--dark-gray);
  color: #ccc;
  border: 0;
  font-size: 13px;
}

.send-query form p {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin: 2px;
}

.send-query form button {
  padding: 5px;
  border: none;
  border-radius: 2px;
  background: var(--yellow);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: #000;
  cursor: pointer;
}

.send-query form button:hover {
  background-color: #9c9c9c;
}

.footer-credits {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #9c9c9c;
  background-color: var(--dark-gray);
  padding: 5px 0;
}

.pg-title {
  background-color: var(--light-gray);
  padding: 10px 0;
}

.who-we-are h1 {
  text-align: center;
}

.title-strip {
  width: 90px;
  height: 4px;
  background: var(--red);
  margin: 2px auto;
}

.wwa-content {
  padding: 10px 30px;
}

.wwa-content img {
  float: left;
  margin: 10px 10px 10px auto;
  width: 30%;
}

.wwa-content h2 {
  color: var(--red);
  font-weight: 600;
}

.wwa-content p {
  font-size: 14px;
  margin: 10px 0;
}

.mission-vision-goal div {
  padding: 0 30px;
  margin: 20px 0;
}

.mission-vision-goal h3 {
  color: var(--red);
  font-size: 22px;
}

.mission-vision-goal p {
  font-size: 14px;
}

.team {
  padding: 10px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member-photo {
  width: 200px;
  height: 200px;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners {
  padding: 10px 30px;
  background-color: var(--yellow);
  text-align: center;
}

.partnership {
  height: 100px;
}

.partnership img {
  height: 100%;
  object-fit: contain;
}

.interventions h1 {
  text-align: center;
}

.interventions-container {
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intervention {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intervention h3 {
  width: 250px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intervention p {
  font-size: 14px;
  line-height: 18px;
}

.intervention a {
  background: var(--gray);
  text-decoration: none;
  color: var(--white);
  border-radius: 50px;
  padding: 5px 15px;
  margin: 10px 0 0;
  font-size: 14px;
}

.intervention a:hover {
  background: var(--red);
}

.intervention-img {
  width: 250px;
}

.intervention-img img {
  width: 100%;
  height: auto;
  max-height: 115px;
  object-fit: cover;
}

/* Individual Interventions */
.intervention-container {
  padding: 10px 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intervention-content img {
  float: left;
  margin: 5px 15px 0 0;
  max-width: 330px;
  width: 100%;
  height: auto;
}

.intervention-content p {
  text-align: justify;
  margin-bottom: 10px;
}

.stories h1 {
  text-align: center;
}

.stories-container {
  padding: 20px;
  display: flex;
  align-items: flex-start;
}

.stories-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 3;
}

.stories-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.story {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.story-img {
  width: 100%;
  height: 200px;
}

.story-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.story-brief {
  display: flex;
}

.posted-like {
  text-align: center;
}

.date {
  background: var(--red);
  color: #fff;
  font-size: 18px;
  padding: 5px;
  margin: 5px 5px 0 0;
}

.date span:first-child {
  border-bottom: 1px solid #fff;
}

.like {
  border: 1px solid #ccc;
  padding: 5px;
  margin: 0 5px 0 0;
}

.like a {
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

.story-details a {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.story-details a:hover {
  color: var(--red);
}

.story-details p {
  font-size: 14px;
  line-height: 18px;
}

.pagination {
  width: 100%;
  margin: 20px 0 0;
}

.pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.pagination li {
  margin: 0 5px;
  border: 1px solid var(--red);
}

.pagination li:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.pagination li:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.pagination li a {
  text-decoration: none;
  padding: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 300;
}

.latest-stories {
  flex: 1;
}

.latest-stories h2 {
  text-align: center;
}

.latest-stories ul {
  list-style: none;
}

.latest-stories ul li {
  margin: 5px 0;
  border-bottom: 1px solid #ccc;
}

.latest-stories ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

.latest-stories ul li a:hover {
  color: var(--red);
}

.latest-stories ul li p {
  font-size: 12px;
}

.latest-stories ul li small {
  color: var(--red);
}

/* Individual Story */

.story-container {
  padding: 10px 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.posted_date {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--red);
  text-align: center;
}

.story-detail img {
  float: left;
  margin: 5px 15px 0 0;
  width: 330px;
  height: auto;
}

.story-detail p {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 10px;
}

.story-info {
  text-align: center;
}

.like-btn {
  font-size: 16px;
  font-weight: 500;
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.like-views span {
  font-size: 12px;
  font-weight: 600;
}

.like-btn:hover {
  color: #000;
  background-color: var(--light-gray);
}

.albums {
  text-align: center;
  margin: 10px 0;
  padding: 5px;
}

.album {
  padding: 5px;
  border: 1px solid var(--red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album:hover {
  background-color: var(--red);
  color: #fff;
}

.gallery h1 {
  text-align: center;
}

.album-photos h1 {
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.album-photos div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.album-photos a {
  width: 100%;
  max-width: 300px;
}

.album-photos img {
  width: 100%;
  height: 100%;
}

.events h1 {
  text-align: center;
}

.events-container {
  padding: 20px;
  display: flex;
  align-items: flex-start;
}

.events-highlights {
  padding: 0 10px;
}

.events-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 3;
}

.event {
  display: flex;
  margin: 5px;
  padding: 5px;
  border: 1px solid #9c9c9c;
}

.event-img {
  width: 500px;
  height: 100%;
  margin-right: 10px;
}

.event-img a {
  text-decoration: none;
}

.event-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.event-brief {
  display: flex;
  flex-direction: column;
}

.event-brief a {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.event-brief a:hover {
  color: var(--red);
}

.event-brief small {
  font-size: 14px;
  color: var(--green);
}

.event-brief p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}

.latest-events {
  flex: 1;
}

.latest-events h2 {
  text-align: center;
}

.latest-events ul {
  list-style: none;
}

.latest-events ul li {
  margin: 5px 0;
  border-bottom: 1px solid #ccc;
}

.latest-events ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

.latest-events ul li a:hover {
  color: var(--red);
}

.latest-events ul li p {
  font-size: 12px;
}

.latest-events ul li small {
  color: var(--red);
}

/* Individual Event */

.event-container {
  padding: 10px 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-detail img {
  float: left;
  margin: 5px 15px 0 0;
  width: 330px;
  height: auto;
}

.event-detail p {
  font-size: 14px;
  text-align: justify;
  margin-bottom: 10px;
}

.resources h1 {
  text-align: center;
}

.resources-content {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.resources-content div {
  border: 1px solid #808080;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
}

.resources-content div h2 {
  text-align: center;
  margin: 10px 20px;
}

.resources-content div ul {
  list-style: square;
}

.resources-content div ul li {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
}

.resources-content div ul li a {
  text-decoration: none;
  color: var(--red);
}

.resources-content div ul li a:hover {
  color: var(--dark-gray);
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 20px;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #6c757d;
}

.breadcrumb-item a {
  color: var(--red);
  text-decoration: none;
  background-color: transparent;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6f7c88;
}

.loading-spinner {
  display: none;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.loading-spinner::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .brand-name p {
    margin: 0;
    line-height: 20px;
  }

  .org-name {
    font-size: 1rem;
  }

  .sub-name {
    font-size: 0.75rem;
  }

  .col-email {
    margin: 0 0 0 180px;
  }

  .email-content,
  .phone-content {
    display: none;
  }

  .donate-button {
    padding: 10px;
  }

  header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    position: absolute;
    z-index: 999;
  }

  header nav {
    position: relative;
    display: none;
  }

  header nav ul li {
    width: 100%;
  }

  header nav ul li ul {
    position: relative;
    width: 100%;
    left: 0;
  }

  .menuToggle {
    position: relative;
    width: 35px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
  }

  .menuToggle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transform: translateY(-12px);
    box-shadow: 0 12px #fff;
  }

  .menuToggle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transform: translateY(12px);
  }

  header.active .menuToggle::before {
    transform: rotate(45deg);
    box-shadow: 0 0 #fff;
  }

  header.active .menuToggle::after {
    transform: rotate(315deg);
    box-shadow: 0 0 #fff;
  }

  header.active nav {
    display: initial;
  }

  .what-we-do {
    margin: 10px 5px;
    padding: 5px 10px;
  }

  .wwd-row {
    flex-direction: column;
    padding: 10px;
  }

  .ka-content {
    flex-direction: column;
  }

  .ka-res {
    width: 100%;
    margin-bottom: 20px;
  }

  .event-img {
    width: 100%;
  }

  .news-content {
    flex-direction: column;
  }

  .news-image {
    width: 100%;
  }

  .newsdetails {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links div {
    margin: 10px 0;
  }

  .divider {
    height: 1px;
    width: 80%;
  }

  .pg-title {
    padding: 10px 0;
    margin: 70px 0 0;
  }

  .resources-content {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .wwa-content img {
    width: 100%;
  }

  .what-we-do {
    margin: 5px;
    padding: 5px;
  }

  .wwd-row {
    flex-direction: column;
    padding: 5px;
  }

  .ka-content {
    flex-direction: column;
    padding: 0 10px;
  }

  .ka-res {
    width: 100%;
    margin-bottom: 15px;
  }

  .key-achivements h1 {
    text-align: center;
  }

  .news-content {
    flex-direction: column;
  }

  .news-image {
    width: 100%;
  }

  .newsdetails {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links div {
    margin: 10px 0;
  }

  .divider {
    height: 1px;
    width: 80%;
  }

  .stories-container,
  .events-container {
    align-items: center;
    flex-direction: column;
  }

  .event {
    flex-direction: column;
  }

  .event-brief p {
    height: 110px;
    overflow: hidden;
  }

  .latest-stories,
  .latest-events {
    display: none;
  }
}

@media (max-width: 450px) {
  .preheader {
    padding: 5px 20px 0;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }

  .reach-us {
    font-size: 0.7rem;
  }

  .header-brand-contact {
    margin: 0.5rem;
  }

  .brand-name p {
    margin: 0;
    line-height: 20px;
  }

  .org-name {
    font-size: 1rem;
  }

  .sub-name {
    font-size: 0.75rem;
  }

  .col-email {
    margin: 0;
  }

  .email-content,
  .phone-content {
    display: none;
  }

  .donate-button {
    display: none;
  }

  .carousel {
    height: 55vh;
  }

  .banner1,
  .banner2,
  .banner3,
  .banner4 {
    height: 55vh;
  }

  .text-box {
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .story {
    width: 100%;
    padding: 0 10px;
  }

  .story-detail img {
    width: 100%;
  }

  .interventions-container {
    padding: 10px 0;
    justify-content: center;
  }

  .intervention-container {
    padding: 10px 20px;
  }

  .intervention-content img {
    max-width: 100%;
  }
}
