
    .liberation-parent {
      max-width: 80rem;
      margin: 0 auto;
      padding: 2rem 1rem;
    }
  
    .section{
        margin-bottom: 0.8rem;
    }
  
    .banner-img {
      width: 100%;
      object-fit: cover;
      border-radius: 0.5rem;
    }
  
    .text-center {
      text-align: center;
    }
  
    .text-lg {
      margin-bottom: 1.1rem;
    }
  
    .bold {
      font-weight: bold;
    }
  
    .italic {
      font-style: italic;
    }
  
    .logo-img {
      display: block;
      margin: 0 auto 3rem;
      max-width: 28rem;
    }
  
    .image-row {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }
  
    .image-row img {
      width: 100%;
      /* max-width: 300px; */
      border-radius: 0.5rem;
    }
  
    .button {
      background-color: #dc2626;
      color: white;
      padding: 1rem 1.2rem;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 0.8rem;
      margin-bottom: 1rem;
      cursor: pointer;
      border: none;
    }
  
    .button:hover {
      background-color: #b91c1c;
    }
  
    @media (max-width: 768px) {
      .banner-img {
        height: auto;
      }
  
      .text-lg {
        font-size: 1rem;
      }
  
      .button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
      }
    }