body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
}

/* Header */
.header {
    padding: 20px 50px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
}

/* Konten Utama */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.page-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

/* Grid Ikon */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px 40px;
    max-width: 800px;
    width: 100%;
}

.icon-item {
    text-align: center;
}

.icon-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.icon-circle i {
    font-size: 30px;
    color: white;
}

.icon-item span {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

/* Warna Latar Belakang Ikon */
.brand-color-green { background-color: #55a852; }
.brand-color-whatsapp { background-color: #25d366; }
.brand-color-facebook { background-color: #1877f2; }
.brand-color-hostinger { background-color: #6a32c2; }
.brand-color-drive { background-color: #e9f5e9; }
.brand-color-tokopedia { background-color: #d1e2d1; }
.brand-color-ssbi { background-color: #eb4566; }

/* Warna ikon yang berbeda dari default */
.drive-icon {
    color: #6aa84f;
}

/* Responsivitas */
@media (max-width: 768px) {
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}