
.certification-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    width: 100%;
    margin: 30px auto;
    flex-wrap: wrap;
}

.certification-box {
    width: calc(33.333% - 20px);
    min-height: 180px;
    border: 1px solid #e5e5e5;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
}

.certification-icon {
    width: 90px;
    height: 90px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon img {
    max-width: 100%;
    max-height: 100%;
}

.certification-content {
    flex: 1;
}

.certification-title {
    font-size: 20px;
	font-family: OpenSans-Regular;
    line-height: 1.5;
    color: #222;
    margin-bottom: 12px;
    font-weight: 500;
}

.certification-text {
    font-size: 16px;
	font-family: OpenSans-Regular;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.certification-btn {
    display: inline-block;
    font-size: 14px;
	font-family: OpenSans-Regular;
    color: #001d70;
    text-decoration: none;
    border-bottom: 1px solid #001d70;
    padding-bottom: 3px;
}

.certification-btn:hover {
    color: #000;
}

@media(max-width:992px){
    .certification-box {
        width: 100%;
    }
}

@media(max-width:600px){
    .certification-box {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        min-height: 140px;
    }

    .certification-icon {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .certification-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .certification-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .certification-btn {
        font-size: 13px;
    }
}
