.credentials-banner {
    background-image: url("../imgs/bannerimg.jpg") !important;
}
.credentials-banner::before {
    background-color: rgba(54, 54, 54, 0.199) !important;
}
.credentials__items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    max-width: 300px;
}

.credentials__items > img {
    width: 80%;
    opacity: 0.8;
    transition: all 300ms ease;
}

.credentials__items > img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.credentials__docs-section {
    padding-top: 0px !important;
}

.credentials__docs {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
    text-align: center;
    gap: 3rem;
    max-width: 400px;
}

.credentials-btn {
    font-size: 18px;
    padding: 16px 16px !important;
    margin-top: 30px;
    border-radius: 10px;
    color: white;
    background-color: #d13848;
    border: none;
    cursor: pointer;
    box-shadow: 0 9px #9a1825;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.4s ease;
    text-decoration: none;
    word-wrap: normal;
}

.credentials-btn:hover {
    background-color: #BE1E2D;
}

.exclusive-partners-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exclusive-partners-list li {
    font-size: 20px;
    font-weight: 600;
    padding: 14px 20px;
    background: #fff;
    border-left: 4px solid #d13848;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

@media (max-width: 768px) {
    .credentials__items {
        grid-template-columns: 1fr;
    }
    .credentials__docs-section {
        margin-right: 25px;
        margin-left: 25px;
    }
    .credentials__docs {
        grid-template-columns: 1fr;
    }
}