/* SECTION WRAPPER */

/* 2-column layout */
.two-col-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px; /* spacing between accordion and image */
  align-items: start;
}

/* Accordion card look */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.acc-item {
  border-radius: 10px;
  overflow: hidden;
  background: #01426a; /* deep teal */
}

/* Trigger button */
.acc-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 24px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.acc-title {
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
}

/* Arrow icon (DOWN when closed, UP when open) */
.acc-icon {
  width: 26px;
  height: 26px;
  display: inline-block;
  position: relative;
}

/* chevron shape */
.acc-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;

  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: translate(-50%, -55%) rotate(45deg); /* DOWN */
  transition: transform 180ms ease;
}

/* open state = UP */
.acc-item.is-open .acc-icon::before {
  transform: translate(-50%, -45%) rotate(-135deg);
}

/* Panel content */
.acc-panel {
  background: #ffffff;
  color: #111;
}

.acc-panel-inner {
  padding: 18px 20px 22px;
}

.acc-panel-inner p {
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  margin: 0;
  line-height: 1.55;
  font-size: 15px;
  color: #222;
}

/* Image frame on right */
.image-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #0b0b0b; /* like your screenshot */
  min-height: 420px;
  display: grid;
  place-items: center;
}

.swap-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .two-col-accordion {
    grid-template-columns: 1fr;
  }
  .image-frame {
    min-height: 320px;
  }
}
