.main-cont {
    width: 75%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    height: auto;
  }
#certification{
  padding-top: 100px;
}
  .curved-cont {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
  }

  .image-cont, .points-cont {
    flex: 1;
    padding: 20px;
  }

  .image-cont img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .points-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .point {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
  }

  @media (max-width: 768px) {
    .curved-cont {
      flex-direction: column;
      align-items: center;
    }

    .image-cont {
      text-align: center;
    }

    .image-cont img {
      max-width: 50%;
      margin-bottom: 20px;
    }

    .points-cont {
      align-items: center;
    }
  }

  @media (max-width: 480px) {
    .image-cont img {
      max-width: 75%;
    }
  }

  .image-cont { display: flex; justify-content: flex-end; padding: 20px; } .image-cont img { max-width: 100%; height: auto; border-radius: 10px; }


  .certification {
    text-align: center;
    backdrop-filter: blur(10px) brightness(1.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 75%;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.certification h1 {
    color: #FF7700;
    font-size: 2em;
    margin: 0;
    animation: slideIn 2s ease-in-out;
}
@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 600px) {
    .certification h1 {
        font-size: 1.5em;
    }
}