* {
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(
        180deg,
        #0b6b45 0px,
        #0f7a4d 300px,
        #f4f7f5 300px
    );
    min-height: 100vh;
    padding: 20px;
}

/* CONTAINER */

.main-wrapper {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* HEADER */

.top-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8ece9;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.system-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f2d2b;
    margin-bottom: 0;
}

.header-line {
    height: 5px;
    width: 260px;
    background: #0f8a57;
    border-radius: 20px;
    margin-top: 16px;
}

/* BUTTON */

.btn-back {
    border: 1px solid #d8e2dc;
    background: white;
    padding: 10px 20px;
    border-radius: 14px;
    font-weight: 500;
    color: #1c5c45;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    font-size: 15px;
}

.btn-back:hover {
    background: #f5faf7;
}

/* TITLE */

.page-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #082c2a;
    margin-top: 35px;
    margin-bottom: 35px;
}

/* CARD */

.detail-card {
    background: white;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid #e7ece8;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* IMAGE */

.gambar-penyakit {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid #e6ece8;
}

/* SECTION TITLE */

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f7a4d;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CONTENT */

.deskripsi-text {
    font-size: 15px;
    line-height: 1.9;
    color: #475467;
    text-align: justify;
}

/* LIST */

.list-custom {
    padding-left: 18px;
    margin-bottom: 0;
}

.list-custom li {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.8;
    color: #475467;
}

/* ALERT */

.info-alert {
    margin-top: 28px;
    background: #f1f8f4;
    border: 1px solid #d9ebe0;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.alert-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1aa567;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.alert-text {
    font-size: 15px;
    color: #35524c;
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    body {
        padding: 12px;
    }

    .main-wrapper {
        padding: 18px;
        border-radius: 18px;
    }

    .system-title {
        font-size: 18px;
    }

    .header-line {
        width: 170px;
    }

    .page-title {
        font-size: 24px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .detail-card {
        padding: 18px;
        border-radius: 18px;
    }

    .gambar-penyakit {
        height: 220px;
        margin-top: 15px;
    }

    .section-title {
        font-size: 16px;
    }

    .deskripsi-text,
    .list-custom li {
        font-size: 14px;
    }

    .info-alert {
        padding: 18px;
    }

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