.campaign {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    /* Ubah nilai gap sesuai kebutuhan Anda */
}

.campaign-box {
    width: 150px;
    height: 150px;
    padding: 10px;
    text-align: center;
    background-color: #b6895b;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: scale(0.6); /* transform scale 0.6 buat nge zoom, biar pas woi -_- */
    margin-inline: -30px;  /* margin inline untuk edit biar gapnya gak terllau jauh -_- */
}

.campaign-icon {
    margin-bottom: 10px;
}

.campaign-icon ion-icon {
    font-size: 50px; /* Ubah ukuran ikon sesuai kebutuhan Anda */
}

.campaign-icon i,
.campaign-icon img {
    width: 50px;
    height: 50px;
}

.campaign-text {
    font-size: 14px;
}

.about-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.about-img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-img img {
    max-width: 720px;
    height: 380px;
}

.contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    text-align: justify;
}

.contents h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contents p {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 100;
    line-height: 1.6;
}

@media (max-width: 450px) {
    #about {
        margin-top: 40px;
    }

    .about-img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -50px;
        margin-right: -50px;
        transform: scale(0.8);
        /* Ubah angka sesuai dengan kebutuhan Anda */
    }

    .about-img img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .campaign-box {
        width: 100px;
        height: 100px;
        padding: 5px;
        text-align: center;
        background-color: #b6895b;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transform: scale(0.6); /* transform scale 0.6 buat nge zoom, biar pas woi -_- */
        margin-inline: -10px;  /* margin inline untuk edit biar gapnya gak terllau jauh -_- */
        margin-top: -30px;
    }

    .campaign-text {
        font-size: 10px;
    }
}