@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/IRANSansXVF.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
}

.card-container {
    width: 1280px;
    height: 108px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.feature {
    width: 302px;
    height: 108px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: start;
    padding: 16px;
    align-items: center;
  }
  
  .feature-content {
    display: flex;
    align-items: center;
  }
  
  .icon {
    width: 40px;
    height: 40px;
  }

  .text {
    font-family: 'IRANSansX', sans-serif;
  }
  
  .text h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #333;
    margin: auto;
  }
  
  .text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #777;
    margin: auto;
  }
  
  .arrow {
    width: 20px;
    height: 20px;
  }

  .vertical-line {
    border-left: 1px solid #EBEBEB;
    height: 75px;
    margin: 0 15px;
  }