
body {
    margin: 0;
    padding: 0;
  }
  
  .previous-year-container {
    margin: 0 auto;
    width: 95%;
    position: relative;
    top: 100px;
    padding-bottom: 260px;
    line-height: 150%;
    text-align: justify;
  
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  
    display: flex;
    justify-content: center;
  }
  
  .previous-year-inner-container {
    width: 80%;
    max-width: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .previous-year-exam-paper-heading p {
    font-family: Cabin;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #7f56d9;
  }
  
  .previous-year-exam-paper-svg {
    text-align: center;
    line-height: 0%;
  }
  
  .papers-container {
    display: flex;
    border: 2px solid #e5ddf7;
    border-radius: 5px;
    width: 95%;
    justify-content: space-between;
    padding: 20px;
    margin-top: 25px;
  }
  
  .papers-container-right {
    display: flex;
    justify-content: center;
    align-items: center;
    scale: 0.7;
  }
  
  .papers-container-right img {
    max-width: 100%;
    height: auto;
  }
  
  .papers-container a {
    font-family: GothamBook;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.0075em;
    text-align: left;
    color: #1982c4;
  }
  
  .download-previous-year-heading {
    font-family: GothamBook;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: left;
  }
  
  .papers-div {
    display: flex;
  
    justify-content: space-between;
    align-items: baseline;
  }
  
  .paper-individual {
    width: 80px;
    height: 60px;
    padding: 24px, 48px, 24px, 48px;
    border-radius: 10px;
    gap: 28px;
    background: #7f56d9;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .papers.papers-top,
  .papers.papers-mid,
  .papers.papers-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .paper-individual a {
    font-family: GothamBook;
    font-size: 1rem;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.0075em;
    text-align: left;
    color: #ffffff;
    text-decoration: none;
  }
  
  .papers-div {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .paper-individual {
    flex: 1 0 30%; /* Each paper-individual takes up 50% of the container width on smaller screens */
    max-width: 30%;
  }
  
  @media screen and (max-width: 1250px) {
    .paper-individual {
      flex: 1 0 30%; /* Each paper-individual takes up 50% of the container width on smaller screens */
      max-width: 45%;
    }
  }
  
  @media screen and (max-width: 950px) {
    .papers-container {
      display: flex;
      border: 2px solid #e5ddf7;
      border-radius: 5px;
      width: 95%;
      justify-content: space-around;
      padding: 20px;
      flex-direction: column-reverse;
      align-items: center;
    }
  
    .previous-year-exam-paper-heading p {
      text-align: left;
    }
  
    .previous-year-exam-paper-svg {
      text-align: left;
    }
  }
  
  /* @media screen and (max-width: 500px) {
    .papers-container {
      display: flex;
      border: 2px solid #e5ddf7;
      border-radius: 5px;
      width: 95%;
      justify-content: space-around;
      padding: 20px;
      flex-direction: column;
      align-items: center;
    }
  
    .previous-year-exam-paper-heading p {
      text-align: left;
    }
  
    .previous-year-exam-paper-svg {
      text-align: left;
    }
  } */