.page-wrapper{
    max-width: 1440px;
    margin: 0 auto;
}

.page-inner{
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    gap: 15px;
}

.title-wrapper{
    display: flex;
}

h1{
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    line-height: 48px;
    position: relative;
    letter-spacing: 0.05px;
    margin: 0;
    margin-bottom: 40px;
}

h1::before {
    content: '';
    position: absolute;
    bottom: 5px; /* Align with the bottom of the text */
    left: 0;
    width: 105%; /* Full width of the text */
    height: 0.2em; /* Adjust thickness of the yellow line */
    background-color: #FFC600; /* Yellow color */
    z-index: -1; /* Places the line behind the text */
}

.page-content{
    display: flex;
    gap: 55px;
}

.categories-container{
    width: 25%;
}

.inner{
    position: sticky;
    top: 100px;
}

.categories-wrapper{
    padding: 28px 23px;
    background: #EEEEEE
}

.categories-list{
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.categories-list li a{
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
}

.categories-list li.active a{
    color: #DB3A2A;
}

.certificates-container{
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 60px;
}

.grid-title{
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    margin-bottom: 11px;
    color: #000000;
}

.certificate-item + .certificate-item{
    margin-top: 20px;
}

.certificate-content-inner{
    display: flex;
}

.certificate-table td{
    padding: 10px 14px;
    color: #000;
    font-size: 14px;
}

.certificate-table td:nth-child(2) {
    text-align: center;
    vertical-align: middle; /* Optional: centers content vertically */
}

.certificate-image-wrapper{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certificate-images {
    width: 35%;
}

.certificate-images .wrapper {
    padding-top: 88px;
    top: 100px;
    position: sticky;
}

.certificate-image{
    display: flex;
    justify-content: center;
}

.certificate-image img{
    object-fit: contain;
    height: 100%;
    max-width: 210px;
    width: 100%;
}

.splide__arrow{
    background: #eeeeee !important;
    opacity: 1 !important;
    border-radius: 2px !important;
    padding: 13px 25px;
    box-sizing: content-box;
    width: 31px !important;
    height: 43px !important;
}

.splide__arrow svg{
    fill: #DB3A2A !important;
}