.section-8{
    position: relative;
    max-width: 1200px;
    margin: 70px auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}

.curriculum-section {
    text-align: center;
    transition: all 0.5s ease;
  }
  
  .small-image-2 {
    width: 162px;
    height: 154px;
    object-fit: contain;
    transition: all 0.5s ease;
  }
  
  /* Heading Styles */
  .curriculum-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #003E65;
    text-align: center;
    margin-top: -60px;
    font-family: "monserrat", sans-serif;
    transition: all 0.5s ease;
  }
  
  /* First Content Styles */
  .curriculum-content {
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
    margin-top: -30px;
    font-family: "Monserrat", sans-serif;
    transition: all 0.5s ease;
  }
  
  /* Second Content Styles */
  .curriculum-subcontent {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2; 
    font-family: "Monserrat", sans-serif;
    transition: all 0.5s ease;
  }
  
  /* Large Image Styles */
  .large-image-2-container {
    margin-top: 10px;
    transition: all 0.5s ease;
  }
  
  .large-image-2 {
    position: relative;
    max-width: 697px; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    transition: all 0.5s ease;
  }
  
/* 320px */
  @media (min-width: 320px) {
    .curriculum-heading {
      font-size: 2.3rem;
    }
    
    .curriculum-content {
      font-size: 1.4rem;
    }

    .curriculum-subcontent {
        font-size: 1.3rem;
    }

    .large-image-2 {
        width: 300px;
    }
}
/* 375px */
@media (min-width: 375px) {
    .curriculum-heading {
      font-size: 2.5rem;
    }
    
    .curriculum-content {
      font-size: 1.4rem;
    }

    .curriculum-subcontent {
        font-size: 1.3rem;
    }
    .large-image-2 {
        width: 350px;
    }
}
/* 425px */
@media (min-width: 425px) {
    .curriculum-heading {
      font-size: 2.7rem;
    }
    
    .curriculum-content {
      font-size: 1.4rem;
    }

    .curriculum-subcontent {
        font-size: 1.3rem;
    }

    .large-image-2 {
        width: 400px;
    }
}
/* 768px */
@media (min-width: 768px) {
    .curriculum-heading {
      font-size: 3rem;
    }
    
    .curriculum-content {
      font-size: 1.4rem;
    }

    .curriculum-subcontent {
        font-size: 1.3rem;
    }

    .large-image-2 {
        width: 697px;
    }
}

