.box_header {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 85%;
}
#new_header .hero-content h1 {
    font-size: clamp(2rem,4vw,4rem);
    line-height: 1.3;
    margin-bottom: 60px;
    font-weight: 700;
    color: white!important;
}
#new_header .hero-content p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white!important;
}
#new_header .cta-btn {
    background-color: #e2542a;
    padding: 15px 55px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
}

.invisible_tag{
    display:none
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.feature-item {
  max-width: 180px;
  text-align: center;
}

.feature-item .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 auto 1rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: #444;
}

.carrusel-container {
  position: relative;
  width: 100%;
}

.carrusel-wrapper {
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carrusel-track {
  display: flex;
  gap: 1.5rem;
}

.carrusel-item {
  flex: 0 0 370px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  z-index: 10;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
}
.carrusel-btn.prev {
  left: 0;
}
.carrusel-btn.next {
  right: 0;
}

@media (max-width: 768px) {
  .features {
    gap: 1.5rem;
  }
  .feature-item {
    max-width: 150px;
  }
  .carrusel-item {
    flex: 0 0 80%;
  }
}

@media (max-width: 500px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .carrusel-item {
    flex: 0 0 370px;
  }
}