/* ===== MAIN CONTAINER ===== */
/* .main-content-hero {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 2rem;
} */

/* ===== SECTION WRAPPER ===== */
.certifications-section {
    width: 100%;
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    /* border-bottom: 1px solid #e9ecef; */
}

.section-header h4 {
    font-weight: 700;
    color: #212529;
    margin-bottom: 0;
}

.section-header p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}

/* ===== CERT LIST ===== */
.cert-list {
    display: flex;
    flex-direction: column;
}

/* ===== CERT ITEM ===== */
.cert-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.cert-item:hover {
    transform: translateX(5px);
}

/* ===== IMAGE CONTAINER ===== */
.cert-img-container {
    width: 100px;
    height: 60px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 5px;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.cert-item:hover .cert-img-container {
    border-color: #adb5bd;
    transform: scale(1.05);
}

/* ===== IMAGE ===== */
.cert-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== CERT DETAILS ===== */
.cert-details h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.cert-details p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}