.tabs-container-wrapper {
  background-image: url(/sites/default/files/2025-03/Group%206356097.png);
  background-size: cover;
  background-position: center;
  color: #ffff;
  margin: auto;
  min-height: 520px;
}

.tabs-container {
  padding: 30px 150px 90px 150px;
  max-width: 1440px;
  margin: auto;
}

.tabs-heading-container {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: space-around;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #009cde;
  font-family: 'Roboto';
  max-width: 1440px;
  margin: auto;
}

.tabs-heading-container h3 {
  text-align: center;
  margin-block-end: 0;
  flex: 1;
  white-space: normal;
  word-wrap: break-word;
  transition: color 0.3s ease;
  cursor: pointer;
  padding: 15px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.2px;
  color: #ffffff;
  font-size: 24px;
  max-width: 195px;
}

.tabs-heading-container h3.tabs-header.active {
  border-bottom: 2px solid #009cde;
  color: #31aee3;
  font-family: 'Roboto';
}

.tabs-content-container {
  border-radius: 10px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  margin-top: 10px;
  background: transparent;
}

@media screen and (max-width: 1024px) {
  .tabs-container {
    padding: 30px 90px 90px 90px;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .tabs-heading-container  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 15px;
    gap: 15px;
    place-items: center;
  }

  .tabs-heading-container h3 {
    padding: 8px 5px;
    text-align: center;
    margin-block-end: 0px;
    overflow-wrap: break-word;
    flex: 1 1 0%;
    white-space: normal;
    transition: 0.3s;
    font-size: 16px;
    max-height: none;
    width: auto;
  }

  .tabs-container {
    padding: 30px 30px 90px 30px;
    margin: auto;
  }

}

@media screen and (max-width: 480px) {
  .tabs-heading-container {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 15px;
    gap: 15px;
    place-items: center;
  }

  .tabs-container {
    padding: 30px 15px 90px 15px;
    margin: auto;
  }
}