@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

.accordion {
  padding: 72px;
  overflow: hidden;
  width: 100%;
}

.accordion-item {
  border: none !important;

}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 20px 0px;
  background-color: #ffffff;
  color: #070626;
  border: 0px;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #F6F6F6;
  border-top: 1px solid #F6F6F6;
  border-radius: 10px;
  font-weight: 500;
  line-height: 160%;
  
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  font-weight: 500; font-size: 18px; line-height: 160%; color: #7B7B7B;
}

.accordion-content.open {
  max-height: 200px;
  padding: 15px;
  
}


.icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .icon {
  transform: rotate(180deg);
  
}

.accordion-headers {
  width: 100%;
  padding: 16px 0px;
  background-color: #ffffff;
  color: #070626;
  border: 0px;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #F6F6F6;
  border-top: 1px solid #F6F6F6;
  border-radius: 10px;
  font-weight: 500;
  line-height: 160%;
  
}

.accordion-headers[aria-expanded="true"] .icon {
  transform: rotate(180deg);
  
}
.feature-items{
  display: flex;
  gap: 12px;
  font-weight: 600;
}
.feature-items img{
  width: 28px;
  height: 28px;
}
.features-box > div{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-container .card  ul li img{
  width: 24px;
  height: 24px;
}
.card-container .card  ul li{
 gap: 12px;
}

.imagreso{
      max-width: min(500px, 100%) !important;
    margin: auto !important;
}

@media (max-width: 575.98px) {

  .featurecomponent {
    padding: 24px;
  }
}

.hero-video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hero-video {
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: black;
  background-color:white;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  
}

.play-button-overlay:hover {
  background-color: #f4f4f4;
 
}



