.content1 {
    padding: 0;
    background: #fff;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;   /* center horizontal */
    align-items: center;       /* center vertical */
}

.content1-wrap {
    width: 100%;
    max-width: 100vw;
    text-align: center;
}

.content1 hr{
	width: 100px;
	border: 1px solid #00bfff;
}

.container {
    width: 90%;
    padding: 20px;
	justify-content: center;   /* center horizontal */
    align-items: center;   
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center; /* center grid */
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    background: #f5faff;
    transition: 0.3s;
}

.item:hover {
    transform: translateY(-3px);
}

/* Icon */
.icon {
    font-size: 22px;
    color: #00bfff;
    flex-shrink: 0;
}

/* Text */
.text {
    display: flex;
    flex-direction: column;
	text-align: left;
	white-space: nowrap;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.text b {
    font-size: 16px;
}

.text span {
    font-size: 13px;
    color: #666;
}

.hidden {
    display: none;
}

/* 📱 MOBILE */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: 1fr; /* jadi 1 kolom */
    }

    .item {
        padding: 12px;
    }

    .text b {
        font-size: 14px;
    }

    .text span {
        font-size: 12px;
    }
}
@media (max-width: 500px) {
    .grid {
        grid-template-columns: 1fr;
    }
}