* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.object-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #000;
    color: #fff;
}

.object-content {
    flex: 1;
    max-width: 50%;
    margin-right: 20px;
}

.object-content h2 {
    font-size: 2.5rem;
    color:  #3b82f6; /* Warna merah untuk judul */
    margin-bottom: 20px;
}

.object-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 22px;
}

.object-content ul {
    list-style: none;
}

.object-content li {
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.object-content li span {
    color:  #3b82f6;
    margin-right: 10px;
    font-size: 1.5rem;
}

.object-image {
    flex: 1;
    max-width: 50%;
}

.object-image img {
    width: 75%;
    margin-left: 100px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .object-section {
        flex-direction: column;
        padding: 20px;
    }

    .object-content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .object-image {
        max-width: 100%;
        padding: -100px; /* Memberi jarak kanan-kiri pada gambar di mobile */
        margin-right: 100px;
    }
    
}

