.dp_container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 40px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}
.dp_container .logo-copilot{
    width: 158px;
}
.dp_container h3 {
  font-family: var(--f4);
  font-weight: bold;
  font-size: clamp(17px, 4vw, 22px);
  margin-top: 14px;
  line-height: normal;
}
.dp-description_content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: auto;
}
.dp-description-item {
  border: 1px solid gray;
  border-radius: 14px;
  height: 190px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  line-height: normal;
  text-align: center;
  width: 220px !important;
  margin: 20px auto;
}
.dp-description_footer {
  font-size: 10px;
}
@media (min-width: 768px) {
  .dp_container {
    border-radius: 18px;
    margin-bottom: 80px;
  }
  .dp_container .logo-copilot{
    width: 270px;
}
  .dp-description_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    gap: 14px;
    margin: 30px auto;
  }
  .dp-description-item {
    width: 100% !important;
    height: 278px;
    margin: 0;
    font-size: 20px;
    gap: 12px;
    padding: 0 20px;
  }
  .dp-description_footer {
    font-size: 14px;
  }
}
