.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
  }

  .feature-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    height: auto;
    width: calc(33% - 100px);
    margin-bottom: 20px;
  }

  .feature-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .feature-box p {
    color: #666;
    line-height: 1.5;
  }

  .feature-box img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    max-height: 320px;
    background:transparent;
    bottom: 0;
  }

  .feature-box:hover{
    transform: scale(1.1)
   }

.formats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
  }

  .formats-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    width: calc(33% - 100px);
    margin-bottom: 20px;
  }

  .formats-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .formats-box p {
    color: #666;
    line-height: 1.5;
  }

  .formats-box:hover{
    transform: scale(1.1)
   }

.centered {
    text-align: center;
}


