.certificate-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.certificate-image img {
    max-width: 100%;
    border-radius: 5px;
}
.certificate-text {
    padding: 20px;
}
.certificate-text h2 {
    font-weight: bold;
    font-size: 40px;
    color: rgb(14, 8, 200);
}
.text-heading {
    font-size: 50px;
    font-weight: bold;
    color: #041bff;
    text-align: center;
}
.text-heading span {
    color: #fdc632;
    font-size: 60px;
}
.certificate-text ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 25px;
    color: black;
}
@media (max-width: 768px) {
    .certificate-container {
        flex-direction: column;
        text-align: center;
    }
    .certificate-text {
        padding-top: 20px;
    }
}