.cert-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    height: 450px; /* SAME height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* --- FIXED HEIGHT FOR HEADING --- */
.cert-title {
    height: 60px;  /* Keeps all headings at same level */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-title h3 {
    font-weight: 700;
    font-size: 22px;
}

/* --- FIXED HEIGHT FOR LOGO AREA --- */
.cert-logo {
    height: 100px; /* Keeps all logos aligned */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cert-logo img {
    max-height: 95px;
    width: auto;
}
.cert-logo-iec{
    max-height: 120px;
    width: auto;
}

/* --- FIXED HEIGHT FOR DESCRIPTION --- */
.cert-desc {
    height: 180px; /* Keeps descriptions aligned */
    display: flex;
    align-items: center;
}
