/* Certificates Section - Simple Version */
.certificates-section {
    padding: 80px 0;
    background: #ffffff;
    /* Clean white background */
    text-align: center;
}

.cert-title-area {
    margin-bottom: 50px;
}

.cert-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-item {
    flex: 0 0 auto;
    width: 150px;
    /* Fixed width for consistency */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.cert-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.cert-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .cert-grid {
        gap: 20px;
    }

    .cert-item {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .cert-grid {
        gap: 15px;
    }

    .cert-item {
        width: 45%;
        /* 2 per row on mobile */
    }
}