.menu-link-parent-text {
  color: #2a3668 !important;
}

.content-container {
  background-image: none;
  background-color: var(--light-steel-blue);
  color: var(--primary-text-color);
  gap: 0;
}

.content-wrapper {
  padding-top: 0;
  color: var(--primary-text-color);
}

.content-about-header {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 20px;
  padding-top: 7rem;
  padding-right: 30px;
  background-color: white;
}

.content-about-header div:first-child p {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-text-color);
}

.content-about-header div:last-child {
  text-align: justify;
}

.content-about-header-left {
  position: relative;
  width: 100%;
}

.content-about-header-left img,
.content-about-header-right-items img,
.about-benefit-container img,
.about-obtained-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient dari putih ke transparan */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 80%
  );
}

.text-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 20px;
  padding-right: 5px;
  padding-top: 0px;
}

.text-content p {
  margin: 0;
  text-align: left;
  line-height: 2rem;
}

.content-about-header-right p:first-child {
  margin-top: 0;
}

.content-about-header-right-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.content-benefit-wrapper {
  background: linear-gradient(135deg, var(--light-steel-blue) 0%, white 100%);
}

.about-benefit-container {
  display: grid;
  grid-template-columns: 1fr 2.9fr 3fr;
  gap: 20px;
  padding-top: 50px;
}

.about-benefit-container p:first-child {
  font-size: 28px;
  font-weight: bold;
}

.about-grid-rows {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.about-obtained-container,
.testimony-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 50px;
  gap: 10px;
}

.about-obtained-container p,
.testimony-container p {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.about-obtained-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimony-container {
  padding-top: 30px;
  padding-bottom: 20px;
  gap: 30px;
}

.coverflow-container {
  width: 100%;
  overflow: hidden;
}

.coverflow {
  display: flex;
  justify-content: center;
  transform-style: preserve-3d;
  height: 350px;
  position: relative;
}

.card {
  width: 500px;
  height: 300px;
  position: absolute;
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 15px;
  object-fit: fill;
  border: none;
  background-color: transparent;
}

.controls {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 20;
}

.testimony-container button {
  background: #444;
  color: white;
  border: none;
  padding: 10px 25px;
  margin: 0 10px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.testimony-container button:hover {
  background: #ff4757;
}

/* Mobile styles (for devices with a max width of 768px) */
@media only screen and (max-width: 768px) {
  .content-about-header {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-right: 0;
  }

  .content-about-header-right {
    padding-inline: 15px;
  }

  .about-benefit-container {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .about-benefit-container p {
    margin: 0;
    text-align: center;
  }

  .about-obtained-wrapper {
    grid-template-columns: 1fr;
  }

  .testimony-container {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .coverflow {
    height: 250px;
    padding-top: 10px;
  }

  .card {
    width: 300px;
    height: 200px;
  }
}
