.content-text h2{
  padding-top: 0;
}
.content-text {
  align-items: center;
}

/* Activities Section */
.activities-section {
  margin: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5vw;
  align-items: start;
  background-color: var(--primary-red);
  border-radius: 3.9vw;
}
#accordion-first {
  padding: 4vw;
  padding-right: 0;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.2vw 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.5rem;
  border: none;
  background: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Let text wrap nicely */
.accordion-text {
  flex: 1;
  white-space: normal;
  word-wrap: break-word;
  margin-right: 1rem;
  line-height: 1.6;
  font-size: 1.3em;
  font-weight: 800;
}

/* Example ::after icon */
.accordion-header::after {
  content: "+";
  font-size: 1.9rem;
  color: #fff;
  flex-shrink: 0;
}

.accordion-item.active .accordion-header::after {
  content: "−";
  color: var(--primary-red);
}

.accordion-body {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  background-color: #fff;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding-bottom: 1rem;
}
.accordion-item.active .accordion-header {
  background-color: #fff;
  color: var(--primary-red);
}
.activities-image {
  width: 100%;
  height: 100%;
  border-top-right-radius: 3.9vw;
  border-bottom-right-radius: 3.9vw;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
#accordion-second {
  height: 100%;
}

/* Responsive */

@media screen and (max-width: 768px) {
  .activities-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
 
  .activities-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 6vw
  }
  .activities-section img {
    display: none;
  }
  #accordion-first {
    padding:unset
  }
}

@media screen and (max-width: 430px) {
.activities-section {
  margin: 1rem;
}

}