/* Accreditation & Certification Section */
.accreditation-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.accreditation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.accreditation-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1e88e5;
    margin-bottom: 40px;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e5e7eb;
}

.logo-item img {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.certificates-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-item {
    background: white;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 350px;
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item img {
    width: 100%;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-row { gap: 30px; }
    .logo-item img { height: 30px; }
    .cert-item { max-width: 100%; }
}

@media (max-width: 600px) {
    .accreditation-section {
        padding: 50px 0;
    }
    
    .accreditation-container {
        padding: 0 15px;
    }
    
    .logo-row {
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .certificates-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 10px 15px 25px 15px;
        margin: 0 -15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }
    
    .certificates-row::-webkit-scrollbar {
        display: none;
    }
    
    .cert-item {
        flex: 0 0 280px;
        max-width: 280px;
        scroll-snap-align: center;
    }
}

