/* Section Styling */
.logo-content {
    padding: 20px 10px;
    background-color: #BED2D9; /* Background yang sesuai */
}
.support-section {
    text-align: center;
}

.support-title {
    font-size: 32px; /* Sedikit lebih besar untuk penekanan */
    font-weight: bold;
    margin-bottom: 40px;
    color: #013753; /* Kontras dengan background */
}

/* Category Styling */
.logo-category {
    margin-bottom: 40px;
    background-color: #ffffff; /* Warna putih untuk kotak kategori */
    padding: 20px;
    border-radius: 12px; /* Membulatkan sudut */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Shadow untuk efek mengambang */
}

.category-title {
    font-size: 24px;
    font-weight: bold;
    color: #013753;
    margin-bottom: 20px;
    text-transform: uppercase; /* Semua huruf besar */
    letter-spacing: 1px; /* Spasi antar huruf */
}

/* Logo Container Styling */
.support-logo-1 {
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 100px;
}

.logo-container-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* Uniform Logo Styling */
.logo-item-2 {
   display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px; /* Ukuran seragam untuk semua logo */
    height: 150px;
   
    padding: 10px;
    background-color: #fff; / /* Pastikan latar belakang putih */
}
.logo-item-2 img {
    max-width: 100%;
    max-height: 120%;
    aspect-ratio: 1 / 1; /* Memastikan proporsi persegi */
    object-fit: contain; /* Menghindari distorsi gambar */
}
.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.logo-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px; /* Ukuran seragam untuk semua logo */
    height: 150px;
   
    padding: 10px;
    background-color: #fff; /* Pastikan latar belakang putih */
}

.logo-item img {
    max-width: 100%;

    aspect-ratio: 1 / 1; /* Memastikan proporsi persegi */
    object-fit: contain; /* Menghindari distorsi gambar */
}

.logo-item p {
    margin: 0; /* Menghapus margin default pada <p> */
    font-size: 14px;
    color: #013753;
    font-weight: bold;
    line-height: 1.2; /* Mengatur jarak antar garis teks agar tidak terlalu rapat */
}
/* Responsiveness */
@media (max-width: 768px) {
    .logo-item {
        width: 120px;
        height: 120px;
    }

    .category-title {
        font-size: 20px;
    }

    .logo-category {
        padding: 15px; /* Lebih kecil untuk layar kecil */
    }
}
