   .accreditation-section {
                background-color: #EAE9F0;
                padding: 90px 30px;
                 font-family: 'Nunito', sans-serif !important;
            }
            .accreditation-section h2,
.accreditation-section h3,
.accreditation-section p {
    font-family: 'Nunito', sans-serif !important;
    color: #000;
}


            .accreditation-section h2 {
                text-align: center;
                font-size: 35px !important;
                margin-bottom: 30px;
                margin-top: -30px;
                color: #000;
                font-weight: 700;
            }

            .accreditation-grid {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 25px;
                max-width: 1400px;
                margin: 0 auto;
            }

            .accreditation-card {
                background-color: white;
              
                border-radius: 16px;
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
                max-width: 265px;
                padding: 0;
                overflow: hidden;
                transition: transform 0.3s ease;
            }

            .accreditation-card:hover {
                transform: translateY(-5px);
            }

 .accreditation-card img {
   border-radius: 20px; /* or your preferred radius */
  
   padding: 16px;
   width: 100%;
   height: 200px;
   object-fit: cover;
}

            .accreditation-content {
                padding: 18px;
            }

            .accreditation-content h3 {
               color: #000;
    font-size: 15px;
    font-weight: bold;
    line-height: normal;
    text-align: left;
    min-height: auto;
     font-family: 'Nunito', sans-serif !important;
            }

            .accreditation-content p {
               color: #000;
    font-size: 15px;
     font-family: 'Nunito', sans-serif !important;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: normal;
    text-align: justify;
            }

            /* Responsive Fixes */
@media (max-width: 1024px) {
    .accreditation-section {
        padding: 70px 15px;
    }
    .accreditation-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .accreditation-section {
        padding: 60px 10px;
    }
    .accreditation-section h2 {
        font-size: 28px;
    }
    .accreditation-content h3 {
        font-size: 16px;
    }
    .accreditation-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .accreditation-section {
        padding: 50px 5px;
    }
    .accreditation-section h2 {
        font-size: 24px;
    }
    .accreditation-card img {
        height: 200px;
    }
}