/* Background image for the header */
.header-partner {
    background-image: url('/img/logo/background.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 200px 0;
}
.partner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px !important;
    z-index: 1;
}
/* Title style to ensure it appears above the overlay */
.partner-title h1{
    position: relative;
    color: white;
    font-size: 3rem; 
    z-index: 2;
    padding-bottom: 5px; 
    border-bottom: 3px solid white; 
    display: inline-block;
}
/* Style for partner cards */
.partner-card {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.logo-partner {
    background-color: #fdd835;
    color: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
}
@media (max-width: 480px) {
    .partner-overlay {
        height: 530px !important; /* Kurangi tinggi overlay */
        width: 100%; /* Buat lebar lebih kecil dari 100% */
        margin: 0 auto; /* Posisikan di tengah */
    }
}