.info-section {
    background-color: #d32f2f;
    color: #fff;
    border-radius: 10px;
    padding: 20px 10px;
    margin-top: -60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.info-block {
    flex: 1 1 160px;
    padding: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.info-block:last-child {
    border-right: none;
}

.info-block h4 {
    font-size:16px;
    margin-bottom: 20px;
}

.info-block p {
    font-size: 24px;
    font-family: var(--font-primary-bold);
}


@media (max-width: 820px){
.info-section  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 20px */
  }
  .info-section .info-block {
    border-bottom: 3px solid solid rgb(255, 255, 255);
    border-right: 0;
    padding: 1.5rem;
  }
}
@media (max-width: 768px){
.info-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .bam-mba-hero {
    align-items: center;
    padding-bottom: 1rem;
  }
  .program-insights .program-navigation {
    padding: 0;
  }
  .stats-title {
    font-size: 36px;
  }
  .info-block h4 {
    font-size: 24px;
    margin-bottom: 0px;
 
}

.info-block p {
    font-size: 16px;
    font-family: var(--font-primary-bold);
}
}

@media (max-width: 550px){
    .info-section {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem;
        border-radius: 0;
    }
    .info-text-section {
      padding: 0 2rem;
    }

    .info-text-section .info-card {
      padding: 4rem 2rem;
    }
}

@media (max-width: 390px){
    .info-section {
      grid-template-columns: repeat(1, 1fr);
      padding: 1rem;
    }

    .info-text-section {
      padding: 1rem;
    }
  }