/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* ====== KONTEN ====== */
.konten {
    width: 100%;
}

/* ====== JUDUL HALAMAN ====== */
.isi {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2980b9, #6dd5fa, #ffffff);
    color: white;
}

.isi h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.isi p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* ====== DESKRIPSI ====== */
.deskripsi {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

/* JUDUL H2 */
.deskripsi h2 {
    margin-top: 35px;
    color: #1e88e5;
    font-size: 26px;
    border-left: 6px solid #1e88e5;
    padding-left: 10px;
    font-weight: 600;
}

/* GAMBAR */
.deskripsi img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 15px 0 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform .3s ease, box-shadow .3s ease;
}

.deskripsi img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* PARAGRAF */
.deskripsi p {
    font-size: 17px;
    text-align: justify;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* LIST */
.deskripsi ul {
    margin-left: 20px;
}

.deskripsi ul li {
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1e88e5;
}

/* PARAGRAF DI LIST */
.deskripsi ul p {
    margin-bottom: 20px;
}

/* ====== FOOTER ====== */
/* .footer {
    margin-top: 40px;
} */

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .isi h1 {
        font-size: 30px;
    }

    .deskripsi {
        padding: 20px;
    }

    .deskripsi h2 {
        font-size: 22px;
    }
}
