.features-box {
  display: grid;grid-template-columns: repeat(4,1fr);text-align: center;
  padding: 20px 0;
  border-radius: 4px;
}
.excitemorebox h1{text-align: center; font-size: 30px;font-family:"myFirstFont";}

.excitemorebox h1:after{
content: ''; position: absolute; width: 100%; height: 2px; background: #ffc087; left: 0; bottom: 3px; z-index: -1; border-radius: 30px;
}


.about-features{gap:20px;margin-top:20px;}

.mainaboutboxflx p{font-size:14px;}

.feature:last-child {
  border-right: none;
}
.feature span b{color:var(--dynamic-color);}

.feature i {
  font-size: 36px;
  color: var(--dynamic-color);
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media(max-width: 768px) {
  .features-box {
    flex-direction: column;
  }
  .feature {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .feature:last-child {
    border-bottom: none;
  }
}