.value-proposition {
    background-image: url('images/sci-fi_command.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  
  #value_001 {
    background-color: #fff;
  }

  .value-heading {
    background-color: #ff7f00;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: -20px -20px 20px -20px;
    font-size: 24px;
  }
  
  .highlight {
    font-weight: normal;
  }
  
  .offer {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .offer h3 {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  
  .price {
    color: #00ccff;
    font-size: 3.0rem;
    font-weight: bold;
  }
  
  .features {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 -10px;
  }
      
  .feature {
    background-color: #fff;
    color: #000;
    padding: 15px;
    margin: 0 10px;
    border-radius: 5px;
    width: calc(25% - 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .feature-icon img {
          width: 48px;
          height:48px;
          fill: white;
  }

  .feature i {
    font-size: 24px;
    color: #00ccff;
    margin-bottom: 10px;
  }
  
  .feature h4 {
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 14px;
    flex-grow: 1;
  }
  
  @media (max-width: 1024px) {
    .features {
      flex-wrap: wrap;
    }
    .feature {
      width: calc(50% - 20px);
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .feature {
      width: 50%;
    }

    .features {
      justify-content: center;
    }

  }